/// <summary> /// Appends the start quick text control character (0x17) to the message, executes the specified action, and /// appends the stop quick text control character(0x18) to the end of the message. /// </summary> /// <param name="this"></param> /// <param name="action"></param> /// <returns></returns> public static MessageEntryBuilder.MessageBuilder QuickText(this MessageEntryBuilder.MessageBuilder @this, Action action) { @this.QuickTextStart(); action(); @this.QuickTextStop(); return(@this); }