//创建表格
public void createTable(String pos, int numCols, int numRows) {
if (find(pos)) {
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
Dispatch range = Dispatch.get(selection, "Range ").toDispatch();
Dispatch newTable = Dispatch.call(tables, "Add ", range,
new Variant(numRows), new Variant(numCols)).toDispatch();
Dispatch.call(selection, "MoveRight ");
}
}
//增加一行
public void addRow(int tableIndex) {
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch rows = Dispatch.get(table, "Rows ").toDispatch();
Dispatch.call(rows, "Add ");
}
//在指定行前面增加一行
public void addTableRow(int tableIndex, int rowIndex) {
// 所有表格
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch rows = Dispatch.get(table, "Rows ").toDispatch();
Dispatch row = Dispatch.call(rows, "Item ", new Variant(rowIndex))
.toDispatch();
Dispatch.call(rows, "Add ", new Variant(row));
}
//在第一行前增加一行
public void addFirstTableRow(int tableIndex) {
// 所有表格
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch rows = Dispatch.get(table, "Rows ").toDispatch();
Dispatch row = Dispatch.get(rows, "First ").toDispatch();
Dispatch.call(rows, "Add ", new Variant(row));
}
//在最后一行前增加一行
public void addLastTableRow(int tableIndex) {
// 所有表格
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch rows = Dispatch.get(table, "Rows ").toDispatch();
Dispatch row = Dispatch.get(rows, "Last ").toDispatch();
Dispatch.call(rows, "Add ", new Variant(row));
}
//增加一列
public void addCol(int tableIndex) {
// 所有表格
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch cols = Dispatch.get(table, "Columns ").toDispatch();
Dispatch.call(cols, "Add ").toDispatch();
Dispatch.call(cols, "AutoFit ");
}
//在指定列前面增加表格的列
public void addTableCol(int tableIndex, int colIndex) {
// 所有表格
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch cols = Dispatch.get(table, "Columns ").toDispatch();
System.out.println(Dispatch.get(cols, "Count "));
Dispatch col = Dispatch.call(cols, "Item ", new Variant(colIndex))
.toDispatch();
// Dispatch col = Dispatch.get(cols, "First ").toDispatch();
Dispatch.call(cols, "Add ", col).toDispatch();
Dispatch.call(cols, "AutoFit ");
}
//在第一列前增加一列
public void addFirstTableCol(int tableIndex) {
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch cols = Dispatch.get(table, "Columns ").toDispatch();
Dispatch col = Dispatch.get(cols, "First ").toDispatch();
Dispatch.call(cols, "Add ", col).toDispatch();
Dispatch.call(cols, "AutoFit ");
}
//在最后一列前增加一列
public void addLastTableCol(int tableIndex) {
Dispatch tables = Dispatch.get(doc, "Tables ").toDispatch();
// 要填充的表格
Dispatch table = Dispatch.call(tables, "Item ", new Variant(tableIndex))
.toDispatch();
// 表格的所有行
Dispatch cols = Dispatch.get(table, "Columns ").toDispatch();
Dispatch col = Dispatch.get(cols, "Last ").toDispatch();
Dispatch.call(cols, "Add ", col).toDispatch();
Dispatch.call(cols, "AutoFit ");
}
分享到:
相关推荐
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
Java数组倒置 简单 Java图片加水印,支持旋转和透明度设置 摘要:Java源码,文件操作,图片水印 util实现Java图片水印添加功能,有添加图片水印和文字水印,可以设置水印位置,透明度、设置对线段锯齿状边缘处理、水印...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...
利用JoSQL可以像操作数据库中的数据一样对任何Java对象集进行查询,排序,分组。 搜索自动提示 Autotips AutoTips是为解决应用系统对于【自动提示】的需要(如:Google搜索), 而开发的架构无关的公共控件, 以满足该类...