XamlFlowSaveOptions.ReplaceBackslashWithYenSign

XamlFlowSaveOptions ReplaceBackslashWithYenSign property. Specifies whether backslash characters should be replaced with yen signs. Default value is false.

XamlFlowSaveOptions.ReplaceBackslashWithYenSign property

Specifies whether backslash characters should be replaced with yen signs. Default value is false.

public bool ReplaceBackslashWithYenSign { get; set; }

Examples

Shows how to configure Wordize to replace backslashes with Yen character while saving in XamlFlow format.

XamlFlowSaveOptions xamlFlowSaveOptions = new XamlFlowSaveOptions();
xamlFlowSaveOptions.ReplaceBackslashWithYenSign = true;

Converter.Create()
    .From(MyDir + "Merger.docx")
    .To(ArtifactsDir + "XamlFlowSaveOptions.ReplaceBackslashWithYenSign.xaml", xamlFlowSaveOptions)
    .Execute();

See Also