Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Row Class / MinHeight Property


In This Topic
    MinHeight Property (Row)
    In This Topic
    Gets or sets the minimum height of the row in pixels.
    Syntax
    'Declaration
     
    <DescriptionAttribute("The minimum height of the row in pixels.")>
    <CategoryAttribute("Behavior")>
    <RefreshPropertiesAttribute(RefreshProperties.All)>
    <AmbientValueAttribute(-2147483648)>
    <LocalizableAttribute(True)>
    <ApplyToDesignerAttribute(True)>
    Public Property MinHeight As Integer
    'Usage
     
    Dim instance As Row
    Dim value As Integer
     
    instance.MinHeight = value
     
    value = instance.MinHeight
    [Description("The minimum height of the row in pixels.")]
    [Category("Behavior")]
    [RefreshProperties(RefreshProperties.All)]
    [AmbientValue(-2147483648)]
    [Localizable(true)]
    [ApplyToDesigner(true)]
    public int MinHeight {get; set;}

    Property Value

    A value representing the minimum height of the row in pixels.
    Remarks

    To reset the value of the MinHeight property to its default value, DefaultMinHeight, the ResetMinHeight method must be called.

    If the value of the MinHeight property becomes larger than the value of the MaxHeight property, then MaxHeight will become equal to MinHeight. If the value of the Height property becomes smaller than MinHeight, then Height will become equal to MinHeight.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also