TabPage.ItemHeaderHeight Property
Gets or sets the height of item headers when the HeaderPanelPosition is set to Left or Right.
Namespace: DevExpress.XamarinForms.Navigation
Assembly: DevExpress.XamarinForms.Navigation.dll
NuGet Package: DevExpress.XamarinForms.Navigation
Declaration
public TabItemLength ItemHeaderHeight { get; set; }
Property Value
Type | Description |
---|---|
TabItemLength | The height of item headers when the HeaderPanelPosition is set to Left or Right, in pixels. |
Remarks
TabPage calculates the size of a tab item header differently depending on the header panel position (HeaderPanelPosition).
Header Panel Position | Item Header Width | Item Header Height |
---|---|---|
Top / Bottom | The actual width of an item header | |
Left / Right | The actual height of an item header |
The TabPage calculates actual size values of a tab item header as follows:
The actual width is equal to TabPageItem.HeaderWidth if it does not equal Default; otherwise, the actual width equals TabPage.ItemHeaderWidth.
The actual height is equal to TabPageItem.HeaderHeight if it does not equal Default; otherwise, the actual height equals
TabPage.ItemHeaderHeight
.