PrintDocument for WinForms | ComponentOne
C1.PrintDocument.8 Assembly / C1.C1Preview Namespace / TableCell Class / Text Property

In This Topic
    Text Property (TableCell)
    In This Topic
    Gets or sets the text contained in the current cell.
    Syntax
    'Declaration
     
    Public Property Text As String
    public string Text {get; set;}
    Remarks

    Setting this property checks the current value of the TableCell.RenderObject property. If it is a RenderText, the value is assigned to that object's RenderText.Text.

    Otherwise, a new RenderText initialized with value is created and assigned to TableCell.RenderObject. Note that properties from the old TableCell.RenderObject are copied to the newly created RenderText using the RenderObject.AssignFrom method. In particular, this copies the style from the old object to the new one.

    Getting this property returns RenderText.Text of RenderText assigned to the TableCell.RenderObject on the current cell, or an empty string if the current value of TableCell.RenderObject is not a RenderText.

    See Also