RemoveGadgetColumn()
语法
RemoveGadgetColumn(#Gadget, Column)概要
Removes a column of the specified gadget.
参数
#Gadget The gadget to use. Column The column to remove. The first column has index 0.
返回值
无.
Remarks
The gadget type can be one of the following:
- ListIconGadget()
- ExplorerListGadget()
示例
If OpenWindow(0, 0, 0, 320, 160, "RemoveGadgetColumn", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) ListIconGadget(0, 10, 10, 300, 140, "Hello", 100) AddGadgetColumn(0, 1, "Column 2", 70) AddGadgetColumn(0, 2, "Column 3", 70) RemoveGadgetColumn(0, 1) ; Remove the 'Column 2' Repeat Until WaitWindowEvent() = #PB_Event_CloseWindow EndIf
参阅
AddGadgetColumn(), ListIconGadget(), ExplorerListGadget()
已支持操作系统
所有