evCreate API 5.7 Help

EvMarkdownStyle Interface

The EvMarkdownStyle TS interface specifies a blueprint of a JS object that defines the native Envision document text formatting for a given range of characters.

Properties

An EvMarkdownStyle object has the following properties:

optional hyperlinkURL: string;

A string, a hyperlink contained in the given range of characters.

span: EvCharSpan;

An EvCharSpan object, a given range of characters with the given native Envision text formatting.

style: EvFontStyle;

An EvFontStyle object, a given native Envision document text formatting applied to the given range of characters.

Examples

  • TS

  • JS

  • { hyperlinkURL: "canvasgfx.com", span: { at: 3, count: 26 }, style: { bold: false, color: { data: { color: "#B3282E" }, id: 42, type: EvFillType.Color }, italic: true, name: "roboto", shadow: false, size: 24, strikethrough: false, underline: true } }
  • { hyperlinkURL: "canvasgfx.com", span: { at: 3, count: 26 }, style: { bold: false, color: { data: { color: "#B3282E" }, id: 42, type: "color" }, italic: true, name: "roboto", shadow: false, size: 24, strikethrough: false, underline: true } }
18 April 2025