Skip to content

Expandable Property

Description

Gets/Sets a Boolean value indicating whether the group is expandable. If false, the group will always be expanded and cannot be changed by the user; it can still be hidden via code.

Property Type

Read-write property

Syntax (Visual Basic)

Public Property Expandable() As Boolean

Example

' This sample code illustrates how to specify that the group will not be expandable.

Dim Group As TaskPanelGroup

Set Group = wndTaskPanel.Groups.Add(0, "System Tasks")
Group.Expandable = False

' This sample code illustrates how to specify that all groups in the task panel will not be expandable.

wndTaskPanel.Expandable = False

See Also


See Also

Task Panel ActiveX Control v24.0


Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.