XmlMappedRange.RowHeight 屬性
取得或設定包含 XmlMappedRange 控制項的列高度 (以點為單位)。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property RowHeight As Object
Object RowHeight { get; set; }
屬性值
型別:System.Object
包含 XmlMappedRange 控制項的列高度 (以點為單位)。
範例
下列程式碼範例使用 ColumnWidth 和 RowHeight 屬性來顯示 XmlMappedRange 的高度和寬度。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub DisplayColumnAndRowSizes()
MsgBox("CustomerLastNameCell is " & _
Me.CustomerLastNameCell.ColumnWidth & _
" characters wide and " & Me.CustomerLastNameCell.RowHeight & _
" points high.")
End Sub
private void DisplayColumnAndRowSizes()
{
MessageBox.Show("CustomerLastNameCell is " +
this.CustomerLastNameCell.ColumnWidth + " characters wide and " +
this.CustomerLastNameCell.RowHeight + " points high.");
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。