ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPMetadataRoot Class / PagedText Property




In This Topic
    PagedText Property
    In This Topic
    Gets or sets Paged Text XMP schema properties.
    Syntax
    'Declaration
     
    Public Property PagedText As ImGearPagedTextXMPMetadata
    'Usage
     
    Dim instance As ImGearXMPMetadataRoot
    Dim value As ImGearPagedTextXMPMetadata
     
    instance.PagedText = value
     
    value = instance.PagedText
    public ImGearPagedTextXMPMetadata PagedText {get; set;}
    public: __property ImGearPagedTextXMPMetadata* get_PagedText();
    public: __property void set_PagedText( 
       ImGearPagedTextXMPMetadata* value
    );
    public:
    property ImGearPagedTextXMPMetadata^ PagedText {
       ImGearPagedTextXMPMetadata^ get();
       void set (    ImGearPagedTextXMPMetadata^ value);
    }

    Property Value

    ImageGear.Formats.XMP.PagedText.ImGearPagedTextXMPMetadata class value.
    Remarks

    If metadata does not contain XMP properties belonging to the Paged Text scheme, the property returns null.

    If the metadata does not have Paged Text XMP properties, and you need to add such properties, create a new instance of the ImageGear.Formats.XMP.PagedText.ImGearPagedTextXMPMetadata class, assign it to this property, and then add XMP properties using corresponding properties of the ImageGear.Formats.XMP.PagedText.ImGearPagedTextXMPMetadata class.

    If you need to remove Paged Text XMP schema properties from the metadata, set this property to null.

    See Also