Foxoft.Ci.CiPadGroup.SetNarrowTabs C# (CSharp) Méthode

SetNarrowTabs() static private méthode

static private SetNarrowTabs ( TextBox text ) : void
text System.Windows.Forms.TextBox
Résultat void
        static void SetNarrowTabs(TextBox text)
        {
            const int EM_SETTABSTOPS = 0xcb;
            SendMessage(text.Handle, EM_SETTABSTOPS, new IntPtr(1), new int[] { 12 });
        }