HeightType
Enum
Height calculation modes that determine whether content grows freely, respects a minimum, or is constrained to an exact value.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Editing
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
C#
public enum HeightType
Fields
Specifies a minimum height for the element. The element will be at least this tall, but may grow taller if the content requires it.
C#
AtLeast = 1
Height is automatically determined based on the content. The element will grow or shrink to fit its content.
C#
Auto = 0
Specifies an exact height for the element. The element will be exactly this tall, regardless of its content. Content that doesn't fit may be clipped or handled according to overflow rules.
C#
Exact = 2