Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / ISupportIntegralResizing Interface / IntegralWidth Property


In This Topic
    IntegralWidth Property (ISupportIntegralResizing)
    In This Topic
    Gets or sets a boolean value indicating if the width of the control should be adjusted to completely display the visible items in the dropdown.
    Syntax
    'Declaration
     
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    <BrowsableAttribute(False)>
    <DefaultValueAttribute(False)>
    Property IntegralWidth As Boolean
    'Usage
     
    Dim instance As ISupportIntegralResizing
    Dim value As Boolean
     
    instance.IntegralWidth = value
     
    value = instance.IntegralWidth
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    [Browsable(false)]
    [DefaultValue(false)]
    bool IntegralWidth {get; set;}

    Property Value

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

    The IntegralWidth property can also be considered as a "horizontal resizing step ratio". For example, if set to true, when the dropdown is horizontally resized, the step will be the width of the individual child items resulting in the visible items always being completely displayed. If set to false, the width of the dropdown will be adjusted pixel by pixel thus allow for the visibles 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