Description
Used to specify the label font for ArcPad in ArcPadPrefs.apx and to define a Label control in a form.Used to specify the label font for ArcPad in ArcPadPrefs.apx and to define a Label control in a form.
Diagram
Overview
|
LABEL
Used to specify the label font for ArcPad in ArcPadPrefs.apx and to define a Label control in a form.Used to specify the label font for ArcPad in ArcPadPrefs.apx and to define a Label control in a form.
|
charset optional
Font character set.
|
|
fontsize optional Restriction of xs:int
Font size.
|
|
fontstyle optional Restriction of xs:string
Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline").
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
charset | | optional | ANSI | | Font character set. |
font | | optional | System | | Font name. |
fontsize | Restriction of xs:int | optional | 16 | | Font size. |
fontstyle | Restriction of xs:string | optional | bold | | Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline"). |
Examples
Source
<xs:element name="LABEL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to specify the label font for ArcPad in ArcPadPrefs.apx and to define a Label control in a form.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="ANSI" name="charset">
<xs:annotation>
<xs:documentation>Font character set.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="System" name="font">
<xs:annotation>
<xs:documentation>Font name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="16" name="fontsize">
<xs:annotation>
<xs:documentation>Font size.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="bold" name="fontstyle">
<xs:annotation>
<xs:documentation>Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline").</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="regular" />
<xs:enumeration value="bold" />
<xs:enumeration value="italic" />
<xs:enumeration value="underline" />
<xs:enumeration value="strikeout" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also