Foxoft.Ci.CiPadGroup.SetNarrowTabs C# (CSharp) Method

SetNarrowTabs() static private method

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