OdtSaveOptions.IsStrictSchema11
OdtSaveOptions IsStrictSchema11 property. Specifies whether export should correspond to ODT specification 1.1 strictly. OOo 3.0 displays files correctly when they contain elements and attributes of ODT 1.2. Use false for this purpose or true for strict conformity of specification 1.1. The default value is false.
OdtSaveOptions.IsStrictSchema11 property
Specifies whether export should correspond to ODT specification 1.1 strictly. OOo 3.0 displays files correctly when they contain elements and attributes of ODT 1.2. Use “false” for this purpose, or “true” for strict conformity of specification 1.1. The default value is false
.
public bool IsStrictSchema11 { get; set; }
Examples
Shows how to instruct Wordize to export ODT that correspond specification 1.1 strictly.
OdtSaveOptions odtSaveOptions = new OdtSaveOptions();
odtSaveOptions.IsStrictSchema11 = true;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "OdtSaveOptions.IsStrictSchema11.odt", odtSaveOptions)
.Execute();
See Also
- class OdtSaveOptions
- namespace Wordize.Saving
- assembly Wordize