Example #1
0
        internal void AddBreak(int aCol, bool aGoesAfter)
        {
            int Index = -1;

            if (!Find(aCol, ref Index))
            {
                FList.Insert(Index, new TVPageBreak(aCol, 0, FlxConsts.Max_Rows, false, aGoesAfter));
            }
        }
Example #2
0
        internal void AddBreak(int aRow, bool aGoesAfter)
        {
            int Index = -1;

            if (!Find(aRow, ref Index))
            {
                FList.Insert(Index, new THPageBreak(aRow, 0, FlxConsts.Max_Columns, false, aGoesAfter));
            }
        }
Example #3
0
        internal void AddBiff8Record(TBiff8VPageBreakRecord aRecord)
        {
            int Index = -1;

            for (int i = 0; i < aRecord.Count; i++)
            {
                if (!Find(aRecord.Col(i), ref Index))
                {
                    FList.Insert(Index, aRecord.CreatePageBreak(i));
                }
            }
        }