Defines possible modes to fit items within a RadPageViewStripElement instance.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
[Flags]
public enum StripViewItemFitMode
Fields
Items are expanded if their size is less than the available one.
C#
Fill = 2
Items are stretched in the available height of their parent container.
C#
FillHeight = 4
Items are arranged in multiLine layout.
C#
MultiLine = Shrink | FillHeight
Each item uses its desired size.
C#
None = 0
Items are shrinked if their size exceeds the available one.
C#
Shrink = 1
Items are either shrinked or expanded when needed.
C#
ShrinkAndFill = Shrink | Fill