Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Reporting Namespace / ReportSettings Class / ColumnLayout Property


In This Topic
    ColumnLayout Property
    In This Topic
    Gets or sets a value indicating how columns which surpass the available page width are printed in a report.
    Syntax
    'Declaration
     
    Public Property ColumnLayout As ColumnLayout
    'Usage
     
    Dim instance As ReportSettings
    Dim value As ColumnLayout
     
    instance.ColumnLayout = value
     
    value = instance.ColumnLayout
    public ColumnLayout ColumnLayout {get; set;}

    Property Value

    A ColumnLayout value indicating how columns which surpass the available page width are printed in a report. By default, ColumnLayout.SpanAcrossPages.
    Remarks

    When set to FitToPage, the width of the columns react as though they had a "weight". Reverting to SpanAcrossPages will not modify the values assigned to the Width property while in FitToPage mode. To cancel the assigned "weights", the Xceed.Grid.Column.ResetWidth method must be called for each column whose width is to be modified.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also