]> source.dussan.org Git - poi.git/commitdiff
Merged region example
authorGlen Stampoultzis <glens@apache.org>
Tue, 12 Mar 2002 10:38:26 +0000 (10:38 +0000)
committerGlen Stampoultzis <glens@apache.org>
Tue, 12 Mar 2002 10:38:26 +0000 (10:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352205 13f79535-47bb-0310-9956-ffa450edef68

src/examples/src/org/apache/poi/hssf/usermodel/examples/MergedCells.java [new file with mode: 0644]

diff --git a/src/examples/src/org/apache/poi/hssf/usermodel/examples/MergedCells.java b/src/examples/src/org/apache/poi/hssf/usermodel/examples/MergedCells.java
new file mode 100644 (file)
index 0000000..de72bb7
--- /dev/null
@@ -0,0 +1,34 @@
+package org.apache.poi.hssf.usermodel.examples;
+
+import org.apache.poi.hssf.usermodel.*;
+import org.apache.poi.hssf.util.Region;
+
+import java.io.IOException;
+import java.io.FileOutputStream;
+
+/**
+ * An example of how to merge regions of cells.
+ *
+ * @author Glen Stampoultzis (glens at apache.org)
+ */
+public class MergedCells
+{
+   public static void main(String[] args)
+        throws IOException
+    {
+        HSSFWorkbook wb = new HSSFWorkbook();
+        HSSFSheet sheet = wb.createSheet("new sheet");
+
+        HSSFRow row = sheet.createRow((short) 1);
+        HSSFCell cell = row.createCell((short) 1);
+        cell.setCellValue("This is a test of merging");
+
+        sheet.addMergedRegion(new Region(1,(short)1,1,(short)2));
+
+        // Write the output to a file
+        FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+        wb.write(fileOut);
+        fileOut.close();
+
+    }
+}