Interface ITitleScreenMenuEntry
A interface representing an entry in the title screen menu.
Assembly: Dalamud.dll
View Source
Declaration
public interface ITitleScreenMenuEntry : IReadOnlyTitleScreenMenuEntry, IComparable<TitleScreenMenuEntry>
Properties
IsInternal
Gets or sets a value indicating whether or not this entry is internal.
View Source
Declaration
bool IsInternal { get; set; }
CallingAssembly
Gets the calling assembly of this entry.
View Source
Declaration
Assembly? CallingAssembly { get; init; }
Id
Gets the internal ID of this entry.
View Source
Declaration
Guid Id { get; init; }
ShowConditionKeys
Gets the keys that have to be pressed to show the menu.
View Source
Declaration
IReadOnlySet<VirtualKey> ShowConditionKeys { get; init; }
Methods
IsShowConditionSatisfied()
Determines the displaying condition of this menu entry is met.
View Source
Declaration
bool IsShowConditionSatisfied()
Returns
System.Boolean
: True if met.### Trigger()
Trigger the action associated with this entry.
View Source
Declaration
void Trigger()