Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Column Class / GetFittedWidth Method / GetFittedWidth() Method


In This Topic
    GetFittedWidth() Method
    In This Topic
    Retrieves the fitted width of the column in pixels.
    Syntax
    'Declaration
     
    Public Overloads Function GetFittedWidth() As Integer
    'Usage
     
    Dim instance As Column
    Dim value As Integer
     
    value = instance.GetFittedWidth()
    public int GetFittedWidth()

    Return Value

    A value containing the fitted width of the column in pixels.
    Remarks

    The fitted width of the column represents the width necessary to display the column's cells' data on one line, regardless of the value of the WordWrap property.

    The GetFittedWidth method must be called outside of the calls to GridControl.BeginInit and GridControl.EndInit methods because the data is not loaded into the grid until EndInit is called therefore, the fitted width cannot be calculated until that moment.

    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