'DeclarationPublic Property Height As DataGridLength
public DataGridLength Height {get; set;}
'DeclarationPublic Property Height As DataGridLength
public DataGridLength Height {get; set;}
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.