Interface IDtrBarEntry
Interface representing an entry in the server info bar.
Assembly: Dalamud.dll
View Source
Declaration
public interface IDtrBarEntry : IReadOnlyDtrBarEntry
Properties
Text
Gets or sets the text of this entry.
View Source
Declaration
SeString? Text { get; set; }
Tooltip
Gets or sets a tooltip to be shown when the user mouses over the dtr entry.
View Source
Declaration
SeString? Tooltip { get; set; }
Shown
Gets or sets a value indicating whether this entry is visible.
View Source
Declaration
bool Shown { get; set; }
OnClick
Gets or sets a action to be invoked when the user clicks on the dtr entry.
View Source
Declaration
Action? OnClick { get; set; }
Methods
Remove()
Remove this entry from the bar. You will need to re-acquire it from DtrBar to reuse it.
View Source
Declaration
void Remove()