| MissingTagPropertiesPageControlStoreControlValue Method |
This can be overridden to store a control value in 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 StoreControlValue(
Control control
)
Protected Overrides Function StoreControlValue (
control As Control
) As Boolean
protected:
virtual bool StoreControlValue(
Control^ control
) override
abstract StoreControlValue :
control : Control -> bool
override StoreControlValue :
control : Control -> bool
Parameters
- control
- Type: System.Windows.FormsControl
The control from which to store the value
Return Value
Type:
BooleanTrue if the method stored the control value or it should be ignored, false if the base
class should attempt to store the value 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