コード例 #1
0
ファイル: PMView.cs プロジェクト: MaciejLisCK/LabZSK
        private static bool AddToPrint(bool add, MicroOperation row, ref string tmp, int idx)
        {
            if (add)
            {
                tmp += "".PadRight(9, ' ');
            }
            bool addToPrint = true;

            tmp += row.getColumnName(idx).PadRight(8, ' ');
            //tmp += "___" + row.getColumn(idx).PadRight(8, ' ');
            tmp += "___" + Translator.GetMicroOpExtendedDescription(row.getColumn(idx)).PadRight(8, ' ') + "\r\n";
            return(addToPrint);
        }