complexType "arrayPropertyType"
Namespace:
Content:
empty, 9 attributes
Defined:
globally within component.xsd, see XML source
Used:
XML Representation Summary
<...
   
category
 = 
xsd:string
   
descriptionKey
 = 
xsd:string
   
displayName
 = 
xsd:string
   
editorClass
 = 
xsd:string
   
helpKey
 = 
xsd:string
   
name
 = 
xsd:string
   
readOnly
 = 
xsd:boolean : "false"
   
resettable
 = 
xsd:boolean : "true"
   
type
 = 
xsd:string
/>
Known Usage Locations
Annotation
A concrete property type that is a dynamic array of property values. All values
are of the same type, which can be either a simple or compound property type.
Type Definition Detail
Type Derivation Summary
  arrayPropertyType (extension)
XML Source
<xsd:complexType name="arrayPropertyType">
<xsd:annotation>
<xsd:documentation>
A concrete property type that is a dynamic array of property values. All values
are of the same type, which can be either a simple or compound property type.
</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="abstractPropertyType">
<xsd:attribute name="type" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>
The element type. It must be either a propertyDataType value, such as "integer"
or "localizedString", or the fully qualified name of a compound property type.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
Attribute Detail
category
The category grouping to be used in the property sheet.
If this value matches the key of a known group then the localized name is looked up within the Symbian component provider. Otherwise it is treated like a
potentially localized string, i.e. if it is %-prefixed a string is looked up in the properties file.
The special value of "hidden" will cause the property to be filtered from the property sheet.
Type:
xsd:string
Use:
optional
Defined:
locally, within abstractPropertyType complexType

descriptionKey
A property key to descriptive text for the property to be displayed in the status bar
when the property is selected in the property sheet.
Type:
xsd:string
Use:
optional
Defined:
locally, within abstractPropertyType complexType

displayName
The property name to be display in the user interface. Can contain spaces and other characters.
This value should be localized.
Type:
xsd:string
Use:
optional
Defined:
locally, within abstractPropertyType complexType

editorClass
The fully qualified name of a class implementing com.nokia.sdt.component.property.IPropertyEditorFactory.
This allows Java code to provide a label provider, cell editor, and validator for the property.
Type:
xsd:string
Use:
optional
Defined:
locally, within abstractPropertyType complexType

helpKey
A key to more detailed help for the property.
Type:
xsd:string
Use:
optional
Defined:
locally, within abstractPropertyType complexType

name
The internal name for the property. It must be unique within the component and its base
components. Since it may be used as an identifier in scripts it should be a legal JavaScript identifier.
Type:
xsd:string
Use:
required
Defined:
locally, within abstractPropertyType complexType

readOnly
If true the property will be read-only in the property sheet.
Type:
xsd:boolean
Use:
optional
Default:
"false"
Defined:
locally, within abstractPropertyType complexType

resettable
If false the reset button will be disabled, inhibiting the user from reverting to the default value
Type:
xsd:boolean
Use:
optional
Default:
"true"
Defined:
locally, within abstractPropertyType complexType

type
The element type. It must be either a propertyDataType value, such as "integer"
or "localizedString", or the fully qualified name of a compound property type.
Type:
xsd:string
Use:
required
Defined:
locally, within this complexType
XML Source
<xsd:attribute name="type" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>
The element type. It must be either a propertyDataType value, such as "integer"
or "localizedString", or the fully qualified name of a compound property type.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>