下面的示例代码删除了显示在“Custom”类别中的所有 links。
C# | 复制代码 |
---|---|
if (barManager1.Categories.IndexOf("Custom") != -1) for (int i = 0; i < barManager1.Categories["Custom"].GetItemCount(); i++) barManager1.Categories["Custom"].GetItem(i).Links.Clear(); |
Visual Basic | 复制代码 |
---|---|
If BarManager1.Categories.IndexOf("Custom") <> -1 Then Dim i As Integer For i = 0 To BarManager1.Categories("Custom").GetItemCount() - 1 BarManager1.Categories("Custom").GetItem(i).Links.Clear() Next i End If |