Applet Schema
ArcPad Element
See Also  Send comments on this topic.
Applet Schema : ArcPad Element

Glossary Item Box

Description

The root element for all ArcPad XML statements.

Diagram

SCRIPT Element APPLET Element Sequence ArcPad Element

Overview

ArcPad
The root element for all ArcPad XML statements.
debug optional Restriction of xs:string
Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts
Sequence
APPLET
Used to define ArcPad applets.
SCRIPT
Used in customization files (ArcPad.apx, *.apa, *.apl) to define scripts or specify an associated script file.

Attributes

NameTypeUseDefaultFixedDescription
debugRestriction of xs:stringoptionalfalse Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts

Examples

Source

<xs:element name="ArcPad" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The root element for all ArcPad XML statements.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="apa:APPLET" />
      <xs:element ref="apa:SCRIPT" />
    </xs:sequence>
    <xs:attribute default="false" name="debug">
      <xs:annotation>
        <xs:documentation>Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="true" />
          <xs:enumeration value="false" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.