XmlMappedRange.RowHeight Property (2007 System)
Gets or sets the height of the row that contains the XmlMappedRange control, measured in points.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public Property RowHeight As Object
'Usage
Dim instance As XmlMappedRange
Dim value As Object
value = instance.RowHeight
instance.RowHeight = value
[BrowsableAttribute(false)]
public Object RowHeight { get; set; }
[BrowsableAttribute(false)]
public:
property Object^ RowHeight {
Object^ get ();
void set (Object^ value);
}
public function get RowHeight () : Object
public function set RowHeight (value : Object)
Property Value
Type: System.Object
The height of the row that contains the XmlMappedRange control, measured in points.
Examples
The following code example uses the ColumnWidth and RowHeight properties to display the width and height of an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
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 Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.