AddBlankTargetToLinks property

bool? AddBlankTargetToLinks
Gets or sets value indicating whether or not to add blank target attribute to anchor links.

Implementation

bool? get AddBlankTargetToLinks => this._addTargetToLinks;
void AddBlankTargetToLinks=(bool? value)

Implementation

set AddBlankTargetToLinks(bool? value) {
  this._ThrowIfReadonly();
  this._addTargetToLinks = value;
}