ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTRichText Class / Rtf Property




In This Topic
    Rtf Property
    In This Topic
    Gets or sets the annotation text in the rich text format.
    Syntax
    'Declaration
     
    Public Property Rtf As String
    'Usage
     
    Dim instance As ImGearARTRichText
    Dim value As String
     
    instance.Rtf = value
     
    value = instance.Rtf
    public string Rtf {get; set;}
    public: __property string* get_Rtf();
    public: __property void set_Rtf( 
       string* value
    );
    public:
    property String^ Rtf {
       String^ get();
       void set (    String^ value);
    }

    Property Value

    String value.
    Remarks
    The setter validates if the provided value is a valid RTF-formatted string and throws the ImGearException with a PARAMETER_HAS_INVALID_VALUE error code if it is not.
    See Also