MainWeb.HeaderBarHeight

MainWeb.HeaderBarHeight property

Gets or sets the height( System.Web.UI.WebControl.Unit ) of the top header bar of the control.

public Unit HeaderBarHeight { get; set; }

Examples

[C#]
	GridWeb1.HeaderBarWidth = new System.Web.UI.WebControls.Unit(32, System.Web.UI.WebControls.UnitType.Point);
	GridWeb1.HeaderBarHeight = new System.Web.UI.WebControls.Unit(24, System.Web.UI.WebControls.UnitType.Point);

[Visual Basic]
	GridWeb1.HeaderBarWidth = New System.Web.UI.WebControls.Unit(32, System.Web.UI.WebControls.UnitType.Point)
	GridWeb1.HeaderBarHeight = New System.Web.UI.WebControls.Unit(24, System.Web.UI.WebControls.UnitType.Point)

See Also