border - Table Border

Specifies the width in pixels of the border around a table or group of controls.

Category

format

Syntax

border="n"

Usage

In Design mode, click All Properties and look for border under format.

By default a control group has no border (border="0").

Examples

This Check Box Group uses has a border of 16 pixels.
<xp:checkBoxGroup id="checkBoxGroup1" value="#{document1.fruit}"
	border="16">
	<xp:selectItems>
		<xp:this.value>
			<![CDATA[#{javascript:var list = @DbColumn("", "fruits", 1);
			return @Explode(list,",")}]]>
		</xp:this.value>
	</xp:selectItems>
</xp:checkBoxGroup>