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

Interface INotificationDrawArgs

Arguments for use with Dalamud.Interface.ImGuiNotification.IActiveNotification.DrawActions.

Remarks

Not to be implemented by plugins.

Assembly: Dalamud.dll
Declaration
public interface INotificationDrawArgs

Properties

Notification

Gets the notification being drawn.

Declaration
IActiveNotification Notification { get; }

MinCoord

Gets the top left coordinates of the area being drawn.

Declaration
Vector2 MinCoord { get; }

MaxCoord

Gets the bottom right coordinates of the area being drawn.

Declaration
Vector2 MaxCoord { get; }
Remarks

Note that System.Numerics.Vector2.Y can be System.Single.MaxValue, in which case there is no vertical limits to the drawing region.