Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / ListColumn Class / Header Property
Example


In This Topic
    Header Property (ListColumn)
    In This Topic
    Gets or sets the content of the column header.
    Syntax
    'Declaration
     
    <DefaultValueAttribute("")>
    <TypeConverterAttribute(System.ComponentModel.StringConverter)>
    Public Property Header As Object
    'Usage
     
    Dim instance As ListColumn
    Dim value As Object
     
    instance.Header = value
     
    value = instance.Header
    [DefaultValue("")]
    [TypeConverter(System.ComponentModel.StringConverter)]
    public object Header {get; set;}

    Property Value

    The column header content. The default value is a null reference (Nothing in Visual Basic).
    Exceptions
    Remarks
    The Header will be used as ListHeader.Content.
    Example
    The following code example demonstrates how to set the Header property in XAML. This example is part of a larger example available in the GcListBox class overview.
    See Also