Пример #1
0
        /**
         * Decrements the row of this cell by one.  Invoked by the sheet when
         * removing rows
         */
        public void decrementRow()
        {
            row--;

            if (features != null)
            {
                Comment c = features.getCommentDrawing();
                if (c != null)
                {
                    c.setX(column);
                    c.setY(row);
                }

                if (features.hasDropDown())
                {
                    //logger.warn("need to change value for drop down drawing");
                }
            }
        }