| MissingTagPropertiesPageControlBindControlValue Method |
This can be overridden to bind a control to a property in a manner other than the default handling
supplied by the base class.
Namespace: SandcastleBuilder.Package.PropertyPagesAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax protected override bool BindControlValue(
Control control
)
Protected Overrides Function BindControlValue (
control As Control
) As Boolean
protected:
virtual bool BindControlValue(
Control^ control
) override
abstract BindControlValue :
control : Control -> bool
override BindControlValue :
control : Control -> bool
Parameters
- control
- Type: System.Windows.FormsControl
The control to bind
Return Value
Type:
BooleanTrue if the method bound the control or it should be ignored, false if the base class
should attempt to bind it in the default manner.
Remarks For this page, we only need to bind one control as all the values are stored in a single
property.
See Also