ImlRenderingMode Enum

Wordize.Saving.ImlRenderingMode enum. Specifies how ink InkML objects are rendered to fixed page formats.

ImlRenderingMode enumeration

Specifies how ink (InkML) objects are rendered to fixed page formats.

public enum ImlRenderingMode

Values

NameValueDescription
Fallback0If fall-back shape is available for ink (InkML) object, Wordize renders fall-back shape instead of the InkML.
InkML1Wordize ignores fall-back shape of ink (InkML) object and renders InkML itself. This is the default mode.

Examples

Shows how to configure drawing object rendering.

SaveOptions so = SaveOptions.CreateSaveOptions(SaveFormat.Pdf);
so.Dml3DEffectsRenderingMode = Dml3DEffectsRenderingMode.Basic;
so.DmlEffectsRenderingMode = DmlEffectsRenderingMode.Simplified;
so.DmlRenderingMode = DmlRenderingMode.Fallback;
so.ImlRenderingMode = ImlRenderingMode.Fallback;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir+ "SaveOptions.DmlRendering.pdf", so)
    .Execute();

See Also