... including URL and other Internet Web site references, is subject to change. without notice. ... does not give you any license to these patents, tr
Document source : download.microsoft.com
Microsoft Word Suite
78
separator
Returns or sets the character between the chapter number and the sequence number.
Read/write.
Can be one of the following:
·
separator colon
·
separator em dash
·
separator en dash
·
separator hyphen
·
separator period
Class: check box
Represents a single check box form field.
To return a single form field object, use form field index, where index is the index number or the
bookmark name associated with the check box. To return a check box object, use the check box
property with the form field object. The following example selects the check box form field named
"Check1" in the active document.
set check box value of check box of form field "Check1" of active document ¬
to
true
The index number represents the position of the form field in the form fields list. The following
example checks the type of the first form field; if it's a check box, the check box is selected.
if form field type of form field 1 of active document is ¬
field form check box then
set check box value of form field 1 of active document to true
end if
The following example determines whether the
ffield
object is valid before changing the check
box size to 14 points.
set ffield to check box of form field 1 of active document
if valid of ffield is true then
set auto size of ffield to false
set checkbox size of ffield to 14
else
display dialog "The first field is not a check box"
end if
Summary :
if form field type of form field 1 of active document is ¬ field form check box then set check box value of form field 1 of active document to true end if The following example determines whether the ffield object is valid before changing the check box size to 14 points.
Tags :
separator,actie,ffield,document,set,object,following,index,number,true,size,example,end