Skip to content

Expandable Property

Description

Gets/Sets a Boolean value indicating whether the task panel groups are expandable. If false, the expand button is removed from the group captions.

Property Type

Read-write property

Syntax (Visual Basic)

Public Property Expandable() As Boolean

Example

' This sample code illustrates how to specify that a 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.