Compartir a través de


XmlMappedRange.AddComment (Método)

Agrega un comentario al control XmlMappedRange.

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel (en Microsoft.Office.Tools.Excel.dll)

Sintaxis

'Declaración
Function AddComment ( _
    Text As Object _
) As Comment
Comment AddComment(
    Object Text
)

Parámetros

Valor devuelto

Tipo: Microsoft.Office.Interop.Excel.Comment
El comentario agregado al control XmlMappedRange.

Comentarios

Parámetros opcionales

Para obtener información sobre parámetros opcionales, vea Parámetros opcionales en las soluciones de Office.

Ejemplos

En el siguiente código de ejemplo se utiliza el método AddComment para agregar un comentario a un control XmlMappedRange denominado CustomerLastNameCell y, a continuación, se utiliza la propiedad Comment para modificar el texto del comentario. En este ejemplo de código se supone que la hoja de cálculo actual contiene un control XmlMappedRange denominado CustomerLastNameCell.

Private Sub AddComment()
    Me.CustomerLastNameCell.AddComment("Text to be replaced.")
    Me.CustomerLastNameCell.Comment.Text( _
        "This range contains customer last names.")
End Sub
private void AddComment()
{
    this.CustomerLastNameCell.AddComment("Text to be replaced.");
    this.CustomerLastNameCell.Comment.Text(
        "This range contains customer last names.", 
        missing, missing);
}

Seguridad de .NET Framework

Vea también

Referencia

XmlMappedRange Interfaz

Microsoft.Office.Tools.Excel (Espacio de nombres)