Freigeben über


XmlMappedRange.Name-Eigenschaft

Ruft einen Wert ab, der einen definierten Namen für ein XmlMappedRange-Steuerelement darstellt, oder legt diesen fest.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Syntax

'Declaration
Property Name As Object
Object Name { get; set; }

Eigenschaftswert

Typ: System.Object
Ein Microsoft.Office.Interop.Excel.Name-Objekt, das einen definierten Namen für ein XmlMappedRange-Steuerelement darstellt.

Beispiele

Im folgenden Codebeispiel wird dem aktuellen Arbeitsblatt ein Microsoft.Office.Interop.Excel.Name hinzugefügt, der sich auf die Zelle bezieht, die von einem XmlMappedRange belegt ist.In dem Beispiel wird anschließend mithilfe der Name-Eigenschaft der Name angezeigt, der sich jetzt auf den XmlMappedRange bezieht.In diesem Codebeispiel wird davon ausgegangen, dass das aktuelle Arbeitsblatt einen XmlMappedRange mit dem Namen CustomerLastNameCell enthält.

Private Sub DisplayName()
    ' Get the location of the XmlMappedRange and prefix it with a "=".
    Dim location As String = Me.CustomerLastNameCell.Address( _
        True, True, Excel.XlReferenceStyle.xlA1, False)
    location = location.Insert(0, "=")

    ' Add a name at the location of the XmlMappedRange.
    Me.Names.Add("LastName", location)

    ' Get the Name of the XmlMappedRange and display the name.
    Dim name2 As Excel.Name = CType(Me.CustomerLastNameCell.Name, Excel.Name)
    MsgBox("The name of CustomerLastNameCell is: " & name2.Name)
End Sub
private void DisplayName()
{
    // Get the location of the XmlMappedRange and prefix it with a "=".
    string location = this.CustomerLastNameCell.Address[true, true,
        Excel.XlReferenceStyle.xlA1, false];
    location = location.Insert(0, "=");

    // Add a name at the location of the XmlMappedRange.
    this.Names.Add("LastName", location);

    // Get the Name of the XmlMappedRange and display the name.
    Excel.Name name2 = ((Excel.Name)this.CustomerLastNameCell.Name);
    MessageBox.Show(name2.Name);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

XmlMappedRange Schnittstelle

Microsoft.Office.Tools.Excel-Namespace