/// <summary> /// Initializes a new instance of the <see cref="ALabelText"/> class. /// </summary> /// <param name="displayTgtID">The label identifier.</param> /// <param name="report">The report this LabelText is derived from.</param> /// <param name="isDedicatedLinePerContentID">if set to <c>true</c> the text associated with each key will be displayed on a separate line.</param> public ALabelText(DisplayTargetID displayTgtID, AReport report, bool isDedicatedLinePerContentID) { LabelID = displayTgtID; Report = report; _isDedicatedLinePerContentID = isDedicatedLinePerContentID; }
/// <summary> /// Initializes a new instance of the <see cref="IntelLabelText" /> class. /// </summary> /// <param name="displayTgtID">The label identifier.</param> /// <param name="report">The report.</param> /// <param name="isDedicatedLinePerContentID">if set to <c>true</c> the text associated with each key will be displayed on a separate line.</param> public LabelText(DisplayTargetID displayTgtID, AReport report, bool isDedicatedLinePerContentID) : base(displayTgtID, report, isDedicatedLinePerContentID) { }