| MamlToFlowDocumentConverterToElementName Method |
This converts a MAML address value to a valid XAML element name
Namespace: SandcastleBuilder.WPF.MamlAssembly: SandcastleBuilder.WPF (in SandcastleBuilder.WPF.dll) Version: 2014.11.22.0
Syntax public static string ToElementName(
string name
)
Public Shared Function ToElementName (
name As String
) As String
public:
static String^ ToElementName(
String^ name
)
static member ToElementName :
name : string -> string
Parameters
- name
- Type: SystemString
The MAML address name value to convert
Return Value
Type:
StringA hashed ID value that can be used as a XAML element name
Remarks Flow document elements are fussy about the value assigned to their Name property
(it's a XAML thing). This is used to convert the MAML name value to one that is valid for use
as a flow document element name.
See Also