ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTText Class / Text Property




In This Topic
    Text Property (ImGearARTText)
    In This Topic
    Gets or sets the text of the mark.
    Syntax
    'Declaration
     
    Public Property Text As String
    'Usage
     
    Dim instance As ImGearARTText
    Dim value As String
     
    instance.Text = value
     
    value = instance.Text
    public string Text {get; set;}
    public: __property string* get_Text();
    public: __property void set_Text( 
       string* value
    );
    public:
    property String^ Text {
       String^ get();
       void set (    String^ value);
    }

    Property Value

    String value.
    Remarks
    If TextType value is ImGearARTTextType.FILE_NAME the Text property holds a string with the file name. If TextType value is ImGearARTTextType.DIRECT_TEXT the Text property holds the actual text. Use ActualText to get the file content if TextType value is ImGearARTTextType.FILE_NAME.
    See Also