ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid.Summaries Namespace / DataGridSummaryRow Class / Height Property

In This Topic
    Height Property (DataGridSummaryRow)
    In This Topic
    Gets or sets the height of this row.
    Syntax
    'Declaration
     
    
    Public Property Height As DataGridLength
    public DataGridLength Height {get; set;}
    Remarks

    C1.Silverlight.DataGrid.DataGridLength supports four different modes but only C1.Silverlight.DataGrid.DataGridUnitType.Pixel and C1.Silverlight.DataGrid.DataGridUnitType.Auto are supported for rows.

    Type Description
    Pixel The height of the row will be the same as the amount of pixels specified.
    Auto The height of the row will be determined by the content of the cells in the row.

    Notice MinHeight and MaxHeight has precedence over this property, that mean that if you set Height=100 and MinHeight=110 the actual value will be 110.

    See Also