| SummaryPropertiesPageControlIsEscapedProperty Method |
This can be overridden to specify whether the property value is escaped or not.
Namespace: SandcastleBuilder.Package.PropertyPagesAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax protected override bool IsEscapedProperty(
string propertyName
)
Protected Overrides Function IsEscapedProperty (
propertyName As String
) As Boolean
protected:
virtual bool IsEscapedProperty(
String^ propertyName
) override
abstract IsEscapedProperty :
propertyName : string -> bool
override IsEscapedProperty :
propertyName : string -> bool
Parameters
- propertyName
- Type: SystemString
The property name
Return Value
Type:
BooleanTrue if the property contains an escaped value, false if not. When bound, an escaped
property's value is unescaped before it is assigned to the control. When stored, the new value is
escaped before it is stored.
See Also