Click or drag to resize

EventPropertyDescriptor Properties

The EventPropertyDescriptor type exposes the following members.

Properties
  NameDescription
Public propertyIsFragment
Returns true to indicate that the property value can itself be represented as an and that the property type can be represented as an .
Public propertyIsIndexed
Returns true for indexed properties, returns false for all other property styles.

An indexed property is a property returning an array value or a getter-method taking a single integer parameter.

Public propertyIsMapped
Returns true for mapped properties, returns false for all other property styles.

A mapped property is a property returning a Map value or a getter-method taking a single string (key) parameter.

Public propertyIsRequiresIndex
Returns true to indicate that the property is an indexed property and requires an index to access elements of the indexed property. Returns false to indicate that the property is not an indexed property or does not require an index for property value access.

For object events, a getter-method that takes a single integer parameter is considered an indexed property that requires an index for access.

A getter-method that returns an array is considered an index property but does not require an index for access.

Public propertyIsRequiresMapKey
Returns true to indicate that the property is a mapped property and requires a map key to access elements of the mapped property. Returns false to indicate that the property is not a mapped property or does not require a map key for property value access.

For object events, a getter-method that takes a single string parameter is considered a mapped property that requires a map key for access.

A getter-method that returns a Map is considered a mapped property but does not require a map key for access.

Public propertyPropertyComponentType
Gets property component type.
Public propertyPropertyName
Returns the property name.
Public propertyPropertyType
Returns the property underlying type.

Note that a null values is possible as null values can be selected.

Top
See Also