Package | com.adobe.xmp |
Interface | public interface IXMPProperty |
Property | Defined by | ||
---|---|---|---|
locale : String
The locale that this property is using to display the value,
a locale code or 'x-default'.
| IXMPProperty | ||
modified : Boolean
True if this property value has previously been modified by other calls
| IXMPProperty | ||
multipleValues : Boolean
True if this property has multiple values within the selected documents.
| IXMPProperty | ||
namespace : String
The schema namespace that the property belongs to.
| IXMPProperty | ||
options : uint
Option flags describing the property type.
| IXMPProperty | ||
path : String
The XPath to the property.
| IXMPProperty | ||
value : String
The value for the property.
| IXMPProperty |
Method | Defined by | ||
---|---|---|---|
toString():String
Creates a string representation of this XMP property object.
| IXMPProperty |
locale | property |
locale:String
[read-write]
The locale that this property is using to display the value,
a locale code or 'x-default'.
This is set only if the value has been retrieved
using getLocalizedText()
.
public function get locale():String
public function set locale(value:String):void
modified | property |
modified:Boolean
[read-write]True if this property value has previously been modified by other calls
Implementation public function get modified():Boolean
public function set modified(value:Boolean):void
multipleValues | property |
multipleValues:Boolean
[read-write]True if this property has multiple values within the selected documents. This is set only in multi-file mode.
Implementation public function get multipleValues():Boolean
public function set multipleValues(value:Boolean):void
namespace | property |
namespace:String
[read-write]The schema namespace that the property belongs to.
Implementation public function get namespace():String
public function set namespace(value:String):void
options | property |
options:uint
[read-write]Option flags describing the property type. A logical OR of allowed bit-flag constants:
xml:lang-attribute
.rdf:type-attribute
. public function get options():uint
public function set options(value:uint):void
path | property |
path:String
[read-write]The XPath to the property. The namespace must be registered with the panel.
Implementation public function get path():String
public function set path(value:String):void
value | property |
value:String
[read-write]
The value for the property.
For the title
property, the value is translated
according to the current locale settings.
public function get value():String
public function set value(value:String):void
toString | () | method |
public function toString():String
Creates a string representation of this XMP property object.
ReturnsString — The string.
|