InlineImageUrlTemplate property

String? InlineImageUrlTemplate
Gets or sets a value of the URL template to use for the src attribute of inline IMG elements.

Implementation

String? get InlineImageUrlTemplate => this._inlineImageUrlTemplate;
void InlineImageUrlTemplate=(String? value)

Implementation

set InlineImageUrlTemplate(String? value) {
  this._ThrowIfReadonly();
  this._inlineImageUrlTemplate = value;
}