User Guide

Container and Control examples 211
FontPicker
<control name="lblFace" type="Label" caption="Font:" down=17 right=10
width=50/>
<control name="fontFace" type="FontPicker" anchor="lblFace" corner="NE"
width="maximum"/>
See ../VTML_Reference/control.html#fontpickerfontpicker/a in the VTML
Reference for syntax and usage information.
ColorPicker
<control name="lblColor" type="Label" caption="Color:" anchor="lblFace"
corner="SW" down=11 width=50/>
<control name="colorColor" type="ColorPicker" anchor="lblColor"
corner="NE" width="maximum"/>
<control name="lblColor" type="Label" caption="Color:" anchor="lblFace"
corner="SW" down=11 width=50/>
<control name="colorColor" type="ColorPicker" anchor="lblColor"
corner="NE" width="maximum"/>
See ../VTML_Reference/control.html#colorpickercolorpicker/a in the VTML
Reference for syntax and usage information.
Checkbox
<control name="checkNoShading" type="CheckBox" caption=" No Shading"
anchor="numWidth" corner="NE" down=4 right=20 width="maximum"/>
See ../VTML_Reference/control.html#checkboxcheckbox/a in the VTML Reference
for syntax and usage information.
RadioGroup
<control name="radioNameConflict"
type="RadioGroup" caption="Radio One"
anchor="lblAccept" corner="SW" down=35
height=maximum width="maximum">
<item value="error" caption="Error – The file
will not be saved and ColdFusion will return
an error." selected="true"/>
<item value="SKIP" caption="Skip – Neither
saves the file nor throws an error."/>
<item value="overwrite" caption="Overwrite -
Replaces the existing file if name conflict occurs." />
<item value="makeunique" caption="Makeunique - Automatically
generates a unique filename for the upload." />
</control>