Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / TextBoxArea Class / Text Property


In This Topic
    Text Property (TextBoxArea)
    In This Topic
    Gets or sets the text associated with the textbox.
    Syntax
    'Declaration
     
    <DescriptionAttribute("The text associated with the textbox.")>
    <CategoryAttribute("Appearance")>
    <RefreshPropertiesAttribute(RefreshProperties.Repaint)>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    Public Overrides Property Text As String
    'Usage
     
    Dim instance As TextBoxArea
    Dim value As String
     
    instance.Text = value
     
    value = instance.Text
    [Description("The text associated with the textbox.")]
    [Category("Appearance")]
    [RefreshProperties(RefreshProperties.Repaint)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public override string Text {get; set;}

    Property Value

    A System.String representing the text associated with the textbox.
    Remarks

    If the Mask property contains info about the casing that should be used (ie. this.Mask starts with casing characters), affecting the Text property directly will modify the casing of the assigned text accordingly.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also