Skip to content

Type Property

Description

Gets/Sets the type of the item.

Property Type

Read-write property

Syntax (Visual Basic)

Public Property Type() As [XTPTaskPanelItemType](XtremeTaskPanel~Enumerations~XTPTaskPanelItemType_EN.md)

Remarks

You can add text items that allow you to display important information. You can also add links and your own custom controls such as a textbox, combobox, command button, and option button.

Example

TaskPanelGroupItem Type Sample (Visual Basic) - This sample code illustrates how to add some text items to the Details group in a task panel control.

Dim Group As TaskPanelGroup

Set Group = wndTaskPanel.Groups.Add(0, "Details")  
' Adds a text item to the "Details" group  
Group.Items.Add 0, "Local Disk", xtpTaskItemTypeText  
Group.Items.Add 0, "File System: FAT32", xtpTaskItemTypeText  

See Also

TaskPanelGroupItem Object


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