Skip to content

MKLinkDestination

Description

Holds data about a link destination required for rendering into source code tokens.

Properties

Name Type Read-Only
EndCharacter MarkdownKit.MKCharacter
Length Integer
StartCharacter MarkdownKit.MKCharacter
Value String

Methods

Name Parameters Returns
Constructor
Constructor startChar As MKCharacter, value As String, length As Integer, endChar As MKCharacter

Property Descriptions

EndCharacter As MarkdownKit.MKCharacter

The last character of this link destination.


Length As Integer

The length of the destination.


StartCharacter As MarkdownKit.MKCharacter

The first character of this link destination.


Value As String

The unescaped link destination.


Method Descriptions

Constructor()

Default constructor.


Constructor(startChar As MKCharacter, value As String, length As Integer, endChar As MKCharacter)

Constructor with parameters.

  • startChar is a reference to the actual first character of this destination.
  • value is the unescaped destination.
  • length is the length of the destination.
  • endChar is a reference to the actual last character of this destination.