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

Glossary Item Box

Description

The root element for all ArcPad XML statements.

Diagram

SCRIPT Element MAP 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
MAP
When parent element is ArcPad, MAP is used in ArcPad map files (*.apm) to define maps.
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="apm:MAP" />
      <xs:element ref="apm: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.