XmlMappedRange.Worksheet Property
Gets a Microsoft.Office.Interop.Excel.Worksheet that represents the worksheet containing the XmlMappedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property Worksheet As Worksheet
Worksheet Worksheet { get; }
Property Value
Type: Microsoft.Office.Interop.Excel.Worksheet
A Microsoft.Office.Interop.Excel.Worksheet that represents the worksheet containing the XmlMappedRange control.
Remarks
The worksheet is a native Excel Microsoft.Office.Interop.Excel.Worksheet, not a Microsoft.Office.Tools.Excel.Worksheet host item.
Examples
The following code example uses the Worksheet property to display the name of a worksheet that contains an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
Private Sub DisplayWorksheetName()
MsgBox("The XmlMappedRange is on worksheet " & _
Me.CustomerLastNameCell.Worksheet.Name)
End Sub
private void DisplayWorksheetName()
{
MessageBox.Show("The XmlMappedRange is on worksheet " +
this.CustomerLastNameCell.Worksheet.Name);
}
.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.