XmlMappedRange.Width Property (2007 System)
Gets the width of the XmlMappedRange control 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 ReadOnly Property Width As Object
'Usage
Dim instance As XmlMappedRange
Dim value As Object
value = instance.Width
[BrowsableAttribute(false)]
public Object Width { get; }
[BrowsableAttribute(false)]
public:
property Object^ Width {
Object^ get ();
}
public function get Width () : Object
Property Value
Type: System.Object
The width of the XmlMappedRange control in points.
Examples
The following code example uses the Width and Height properties to display the width and height of an XmlMappedRange named CustomerLastNameCell. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
Private Sub DisplayHeightAndWidth()
MsgBox("CustomerLastNameCell is " & _
Me.CustomerLastNameCell.Width & _
" points wide and " & Me.CustomerLastNameCell.Height & _
" points high.")
End Sub
private void DisplayHeightAndWidth()
{
MessageBox.Show("CustomerLastNameCell is " +
this.CustomerLastNameCell.Width + " points wide and " +
this.CustomerLastNameCell.Height + " 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.