ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / TextBox Class / CanGrow Property
Example

In This Topic
    CanGrow Property (TextBox)
    In This Topic
    Gets or sets a value indicating whether the textbox size can increase to accommodate its contents.
    Syntax
    'Declaration
     
    Public Property CanGrow As Boolean
    public bool CanGrow {get; set;}

    Property Value

    A System.Boolean value where true indicates the textbox size can grow to fit the contents; otherwise, false. The default is false.
    Example
    TextBox textBox = new TextBox();
    textBox.CanGrow = true;
    See Also