combit List & Label 30 - .NET Help
combit.Reporting.DataProviders Namespace / ITableColumn Interface / Content Property
Example


Content Property (ITableColumn)
This property is accessed to query the column content.
Syntax
'Declaration
 
ReadOnly Property Content As Object
 
Example
#region ILlDataColumn Members

public object Content
{
    get { return _content; }
    set { _content = value; }
}

public string ColumnName
{
    get { return _dataColumn.ColumnName; }
}

public Type DataType
{
    get { return _dataColumn.DataType; }
}

#endregion
#region ILlDataColumn Members

Public Property Content() As Object
    Get
        Return _content
    End Get
    Set
        _content = value
    End Set
End Property

Public Readonly Property ColumnName() As String
    Get
        Return _dataColumn.ColumnName
    End Get
End Property

Public Readonly Property DataType() As Type
    Get
        Return _dataColumn.DataType
    End Get
End Property
#End Region
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also