Click or drag to resize
Sandcastle Help File BuilderBasePropertyPageCustomUserControls Property
This is used to access the custom user control list

Namespace: SandcastleBuilder.Package.PropertyPages
Assembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax
public static Collection<string> CustomUserControls { get; }

Property Value

Type: CollectionString
Remarks
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
C#
// Add custom user controls to the change tracking container list
BasePropertyPage.CustomUserControls.Add("SomeCompany.Controls.UITab");
BasePropertyPage.CustomUserControls.Add("SomeCompany.Controls.UITabPage");
See Also