Adds a new sub-category (child category) to this category on both the local disk and in
ChildCategories.
Syntax
Example
Visual Basic | Copy Code |
---|
Public Sub AutoFormsAddCategory(ByVal category As IMasterFormsCategory, ByVal name As String)
category.AddChildCategory(name)
End Sub |
C# | Copy Code |
---|
public void AutoFormsAddCategory(IMasterFormsCategory category, string name) { category.AddChildCategory(name); } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also