LoadOptions.UseSystemLcid

LoadOptions UseSystemLcid property. Gets or sets whether to use LCID value obtained from Windows registry to determine page setup default margins.

LoadOptions.UseSystemLcid property

Gets or sets whether to use LCID value obtained from Windows registry to determine page setup default margins.

public bool UseSystemLcid { get; set; }

Remarks

If set to true, then MS Word behavior is emulated which takes LCID value from Windows registry.

The default value is false.

Examples

Shows how to use special property for updating field result.

LoadOptions loadOptions = new LoadOptions();
loadOptions.UseSystemLcid = true;

Converter.Create()
    .From(MyDir + "UseSystemLcid.docx", loadOptions)
    .To(ArtifactsDir + "LoadOptions.UseSystemLcid.docx")
    .Execute();

See Also