Skip to main content
Version: 14.x (API 14) [Legacy]

Class NamePlateQuotedParts

A part builder for constructing and setting quoted nameplate fields (i.e. free company tag and title).

Remarks

This class works as a lazy writer initialized with empty parts, where an empty part signifies no change should be performed. Only after all handler processing is complete does it write out any parts which were set to the associated field. Reading fields from this class is usually not what you want to do, as you'll only be reading the contents of parts which other plugins have written to. Prefer reading from the base handler's properties or using Dalamud.Game.Gui.NamePlate.NamePlateInfoView.

Assembly: Dalamud.dll
Declaration
public class NamePlateQuotedParts

Properties

OuterWrap

Gets or sets the opening and closing SeStrings which will wrap the entire contents, which can be used to apply colors or styling to the entire field.

Declaration
public (SeString, SeString)? OuterWrap { get; set; }

LeftQuote

Gets or sets the opening quote string which appears before the text and opening text-wrap.

Declaration
public SeString? LeftQuote { get; set; }

RightQuote

Gets or sets the closing quote string which appears after the text and closing text-wrap.

Declaration
public SeString? RightQuote { get; set; }

TextWrap

Gets or sets the opening and closing SeStrings which will wrap the text, which can be used to apply colors or styling to the field's text.

Declaration
public (SeString, SeString)? TextWrap { get; set; }

Text

Gets or sets this field's text.

Declaration
public SeString? Text { get; set; }