Xceed SmartUI for WinForms v3.6 Documentation
Xceed.SmartUI.v3.6 Assembly / Xceed.SmartUI Namespace / SmartItem Class / Items Property


In This Topic
    Items Property (SmartItem)
    In This Topic
    Gets the collection of child SmartItems associated with the SmartItem..
    Syntax
    'Declaration
     
    <CategoryAttribute("Data")>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)>
    <BrowsableAttribute(False)>
    <DescriptionAttribute("Gets the collection of child SmartItems.")>
    Public ReadOnly Property Items As SmartItemCollection
    'Usage
     
    Dim instance As SmartItem
    Dim value As SmartItemCollection
     
    value = instance.Items
    [Category("Data")]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    [Browsable(false)]
    [Description("Gets the collection of child SmartItems.")]
    public SmartItemCollection Items {get;}

    Property Value

    A reference to a SmartItemCollection containing a list of the child SmartItems.
    Remarks

    To know if a SmartItem can have child SmartItems, you can verify if it has an associated layout. For example, this.Items.Layout != null;

    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