! * Insert an \a image to current active worksheet at the position \a row, \a column * Returns ture if success. */
| 643 | * Returns ture if success. |
| 644 | */ |
| 645 | int Document::insertImage(int row, int column, const QImage &image) |
| 646 | { |
| 647 | if (Worksheet *sheet = currentWorksheet()) |
| 648 | return sheet->insertImage(row, column, image); |
| 649 | |
| 650 | return 0; |
| 651 | } |
| 652 | |
| 653 | bool Document::getImage(int imageIndex, QImage& img) |
| 654 | { |