| BasePropertyPageCustomUserControls Property |
This is used to access the custom user control list
Namespace: SandcastleBuilder.Package.PropertyPagesAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax public static Collection<string> CustomUserControls { get; }
Public Shared ReadOnly Property CustomUserControls As Collection(Of String)
Get
public:
static property Collection<String^>^ CustomUserControls {
Collection<String^>^ get ();
}
static member CustomUserControls : Collection<string> with get
Property Value
Type:
CollectionStringRemarks The class recognizes the basic panel and container controls but will ignore all
UserControl derived objects. If you have a user control that you want included in the
binding procedure, add its full type name to this collection.
NOTE:You only need to add type names to this property if it is not derived from one of
the container controls (see
BindProperties(ControlControlCollection) for more information).
This property is static so it can be populated once at start-up for use throughout the
application's lifetime.
Examples
BasePropertyPage.CustomUserControls.Add("SomeCompany.Controls.UITab");
BasePropertyPage.CustomUserControls.Add("SomeCompany.Controls.UITabPage");
See Also