BTool.DeviceFormUtils.CheckLineLength C# (CSharp) Method

CheckLineLength() public method

public CheckLineLength ( string &msg, uint lineIndex, bool addTabs ) : void
msg string
lineIndex uint
addTabs bool
return void
        public void CheckLineLength(ref string msg, uint lineIndex, bool addTabs)
        {
            if (((lineIndex + 1) % 16) == 0)
            {
                if (addTabs)
                    msg += "\n\t\t  ";
                else
                    msg += "\n";
            }
        }