1. 程式人生 > >PageOffice中word常用介面物件---Row類

PageOffice中word常用介面物件---Row類

它代表Word中定義的表格行物件,這個物件只能通過Table類物件的openRow(rowIndex)方法獲取,方法中的引數代表行的索引,從“1”開始,即

Row row = table.openRow(rowIndex);// Java開發,table為Table類物件。

Row類物件的屬性

index:返回行的索引值

Java程式碼:

	Row row = table.openRow(1);
	int rowIndex = row.getIndex();

ASP.NET程式碼:

	Row row = table.OpenRow(1);
	int rowIndex = row.Index;

Row類物件的方法

SetHeight (RowWidth, WdRowHeightRule):設定表格某一行的高度

  • RowWidth:必選引數,指定行的高度,以磅為單位
  • WdRowHeightRule:可選引數,設定指定行的高度的規則,列舉型別,詳細請參見PageOffice開發幫助

Java程式碼:

	row.setHeight(50f);

ASP.NET程式碼:

	row.SetHeight(25f, WdRowHeightRule.wdRowHeightAuto);