Exemplo n.º 1
0
 public static extern IntPtr SendMessage(HandleRef hWnd, User32.WM msg, IntPtr wParam, [In, Out, MarshalAs(UnmanagedType.LPStruct)] NativeMethods.CHARFORMAT2A lParam);
Exemplo n.º 2
0
 private NativeMethods.CHARFORMAT2A GetCharFormat2(bool fSelection) {
     NativeMethods.CHARFORMAT2A cf2 = new NativeMethods.CHARFORMAT2A();
     UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), RichTextBoxConstants.EM_GETCHARFORMAT, fSelection ? RichTextBoxConstants.SCF_SELECTION : RichTextBoxConstants.SCF_DEFAULT, cf2);
     return cf2;
 }