Preferences Schema
LABEL Element
See Also  Send comments on this topic.
Preferences Schema : LABEL Element

Glossary Item Box

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

LABEL Element

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.
font optional
Font name.
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

NameTypeUseDefaultFixedDescription
charset optionalANSI Font character set.
font optionalSystem Font name.
fontsizeRestriction of xs:intoptional16 Font size.
fontstyleRestriction of xs:stringoptionalbold 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

© 2013 All Rights Reserved.