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

Class PrintableChatMessage

Assembly: Dalamud.dll
Declaration
public sealed class PrintableChatMessage : IPrintableChatMessage, IChatMessage

Implements:
Dalamud.Game.Chat.IPrintableChatMessage, Dalamud.Game.Chat.IChatMessage

Properties

LogKind

Gets the type of chat.

Declaration
public XivChatType LogKind { get; set; }

SourceKind

Gets the relationship of the entity sending the message or performing the action.

Declaration
public XivChatRelationKind SourceKind { get; set; }

TargetKind

Gets the relationship of the entity receiving the message or being targeted by the action.

Declaration
public XivChatRelationKind TargetKind { get; set; }

Sender

Gets the sender name.

Declaration
public ReadOnlySeString Sender { get; set; }

Message

Gets the message sent.

Declaration
public ReadOnlySeString Message { get; set; }

Timestamp

Gets the timestamp of when the message was sent.

Declaration
public int Timestamp { get; set; }

Silent

Gets or sets a value indicating whether new message sounds should be silenced or not.

Declaration
public bool Silent { get; set; }

Implements