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


In This Topic
    Content Property (ITableColumn)
    In This Topic
    This property is accessed to query the column content.
    Syntax
    'Declaration
     
    
    ReadOnly Property Content As Object
    object Content {get;}
    property Object^ Content {
       Object^ get();
    }
    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 7, .NET 8

    See Also