XmlMappedRange.Name Property

Definition

Gets or sets a value representing a defined name for an XmlMappedRange control.

public:
 property System::Object ^ Name { System::Object ^ get(); void set(System::Object ^ value); };
public object Name { get; set; }
member this.Name : obj with get, set
Public Property Name As Object

Property Value

A Name object that represents a defined name for an XmlMappedRange control.

Examples

The following code example adds a Microsoft.Office.Interop.Excel.Name that refers to the cell occupied by an XmlMappedRange to the current worksheet. The example then uses the Name property to display the name that now refers to the XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

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);
}
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

Applies to