Propriedade XmlMappedRange.Name
Obtém ou define um valor que representa um nome definido para um controle de XmlMappedRange .
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)
Sintaxe
'Declaração
Property Name As Object
Object Name { get; set; }
Valor de propriedade
Tipo: System.Object
Um objeto de Microsoft.Office.Interop.Excel.Name que representa um nome definido para um controle de XmlMappedRange .
Exemplos
O exemplo de código a seguir adiciona Microsoft.Office.Interop.Excel.Name que se refere a célula ocupada por XmlMappedRange a planilha atual. O exemplo usa a propriedade de Name para exibir o nome que se refere agora XmlMappedRange. Este exemplo de código a seguir pressupõe que a planilha atual contiver XmlMappedRange chamado CustomerLastNameCell.
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);
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.