Share via


XmlMappedRange.Comment Property (2007 System)

Gets a Comment that represents the comment associated with the cell in the upper-left corner of the XmlMappedRange control.

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

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Comment As Comment
'Usage
Dim instance As XmlMappedRange 
Dim value As Comment 

value = instance.Comment
[BrowsableAttribute(false)]
public Comment Comment { get; }
[BrowsableAttribute(false)]
public:
property Comment^ Comment {
    Comment^ get ();
}
public function get Comment () : Comment

Property Value

Type: Comment
A Comment that represents the comment associated with the cell in the upper-left corner of the XmlMappedRange control.

Examples

The following code example uses the AddComment method to add a comment to an XmlMappedRange, and then uses the Comment property to alter the comment text. This code example assumes that the current worksheet contains an XmlMappedRange named 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);
}

.NET Framework Security

See Also

Reference

XmlMappedRange Class

XmlMappedRange Members

Microsoft.Office.Tools.Excel Namespace