Interface IMutableChatMessage
Interface representing a chat message that can be modified by a plugin.
Assembly: Dalamud.dll
Declaration
public interface IMutableChatMessage : IChatMessage
Properties
Sender
Gets or sets the sender name.
Declaration
SeString Sender { get; set; }
Message
Gets or sets the message sent.
Declaration
SeString Message { get; set; }
SenderModified
Gets a value indicating whether Dalamud.Game.Chat.IMutableChatMessage.Sender was modified by a plugin.
Declaration
bool SenderModified { get; }
MessageModified
Gets a value indicating whether Dalamud.Game.Chat.IMutableChatMessage.Message was modified by a plugin.
Declaration
bool MessageModified { get; }