Esempio n. 1
0
        /**
         * <code>RtfTable</code>s call this method from their own SetMerge() to
         * specify that a certain other cell is to be merged with it.
         *
         * @param x The column position of the cell to be merged
         * @param mergeType The merge type specifies the kind of merge to be applied
         * (MERGE_HORIZ_PREV, MERGE_VERT_PREV, MERGE_BOTH_PREV)
         * @param mergeCell The <code>RtfCell</code> that the cell at x and y is to
         * be merged with
         */
        public void SetMerge(int x, int mergeType, RtfCell mergeCell)
        {
            RtfCell cell = (RtfCell)cells[x];

            cell.SetMerge(mergeType, mergeCell);
        }