Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / WinCalendar Class / IntegralHeight Property


In This Topic
    IntegralHeight Property (WinCalendar)
    In This Topic
    Gets or sets a boolean value indicating if the height of the control should be adjusted to completely display the last visible item.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Indicates if the height of the control should be adjusted to completely display the last visible item.")>
    <CategoryAttribute("Behavior")>
    <DefaultValueAttribute(True)>
    Public Property IntegralHeight As Boolean
    'Usage
     
    Dim instance As WinCalendar
    Dim value As Boolean
     
    instance.IntegralHeight = value
     
    value = instance.IntegralHeight
    [Description("Indicates if the height of the control should be adjusted to completely display the last visible item.")]
    [Category("Behavior")]
    [DefaultValue(true)]
    public bool IntegralHeight {get; set;}

    Property Value

    true if the height of the control should be adjusted to completely display the last visible item; false if the last visible item can be partially displayed. By default, true.
    Remarks

    The IntegralHeight property can also be considered as a "vertical resizing step ratio". For example, if set to true, when the calendar is vertically resized, the step will be the height of the individual child items resulting in the last visible item always being completely displayed. If set to false, the height of the calendar will be adjusted pixel by pixel thus allow for the last visible item to be partially displayed.

    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