ESRI.Configuration Element
In This Topic
Description
Diagram
Overview
|
|
All
|
Targets
The ArcGIS product and version the add-in targets.
|
Choice 0..∞
| |
|
|
language required ST_Target Simple Type
The development environment the add-in was authored in. For example, CLR for .NET.
|
|
namespace required ST_String Simple Type
The default namespace for all the classes in the add-in. Use this attribute instead of specifying the full class name (namespace.className) on each of your types.
|
|
library required ST_String Simple Type
The default library for all the classes in the add-in. If all your types originate in the same library, use this attribute to set it as the default.
|
|
Choice optional
|
|
Choice 0..∞
|
|
Choice 0..∞
|
|
class required xs:string
|
|
All optional
| | | | | | | | | |
Source
<xs:element name="ESRI.Configuration" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>ESRI Plug-In</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:all>
<xs:element name="Name" type="ST_String" minOccurs="1">
<xs:annotation>
<xs:documentation>
The add-in's name.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AddInID" type="ST_String" minOccurs="1">
<xs:annotation>
<xs:documentation>
A uniquie identifier for the add-in, usually a GUID.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="ST_String">
<xs:annotation>
<xs:documentation>
A detailed description of the add-in.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Version" type="ST_String" minOccurs="1">
<xs:annotation>
<xs:documentation>
The version of the add-in.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Image" type="ST_String" minOccurs="0">
<xs:annotation>
<xs:documentation>
The image to associate with the entire add-in.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Author" type="ST_String">
<xs:annotation>
<xs:documentation>
The author of the add-in.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Company" type="ST_String">
<xs:annotation>
<xs:documentation>
The company that developed the add-in.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Date" type="ST_String">
<xs:annotation>
<xs:documentation>
The date the add-in was created.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Targets" minOccurs="1">
<xs:annotation>
<xs:documentation>
The ArcGIS product and version the add-in targets.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Target">
<xs:complexType>
<xs:attribute name="name" type="ST_Product" use="required" />
<xs:attribute name="version" type="ST_String" use="required">
<xs:annotation>
<xs:documentation>
A version of the ArcGIS product; for example, '2.3'.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="AddIn" type="CT_AddIn" minOccurs="1" />
</xs:all>
</xs:complexType>
</xs:element>
|
See Also