Aracılığıyla paylaş


NamedRange.Comment Özellik

Alır bir Comment temsil eden üst sol köşesindeki hücre ile ilgili yorum NamedRange denetim.

Ad alanı:  Microsoft.Office.Tools.Excel
Derleme:  Microsoft.Office.Tools.Excel (Microsoft.Office.Tools.Excel.dll içinde)

Sözdizimi

'Bildirim
ReadOnly Property Comment As Comment
Comment Comment { get; }

Özellik Değeri

Tür: Microsoft.Office.Interop.Excel.Comment
A Comment temsil eden üst sol köşesindeki hücre ile ilgili yorum NamedRange denetim.

Örnekler

Aşağıdaki kod örneği oluşturur bir NamedRange ve hücreye bir açıklama ekler.Daha sonra açıklama kullanıcı tıklattığında görünür hale gelmesine neden olan bir ileti kutusu görüntüler Tamam.

Bu örnek için belge düzeyi özelleştirmesinde içindir.

Private commentRange As Microsoft.Office.Tools.Excel.NamedRange

Private Sub AddCommentToRange()
    commentRange = Me.Controls.AddNamedRange( _
        Me.Range("C3"), "setColumnRowRange")
    Me.commentRange.AddComment("This is a comment.")
    Dim comment1 As Excel.Comment = Me.commentRange.Comment
    comment1.Visible = False
    If MessageBox.Show("Display comment?", "Comment Test", _
        MessageBoxButtons.OKCancel) = DialogResult.OK Then
        comment1.Visible = True
    End If
End Sub
Microsoft.Office.Tools.Excel.NamedRange commentRange;
private void AddCommentToRange()
{
    commentRange = this.Controls.AddNamedRange(
        this.Range["C3"], "setColumnRowRange");
    this.commentRange.AddComment("This is a comment.");
    Excel.Comment comment1 = this.commentRange.Comment;
    comment1.Visible = false;
    if (MessageBox.Show("Display comment?", "Comment Test",
        MessageBoxButtons.OKCancel) == DialogResult.OK)
    {
        comment1.Visible = true;
    }
}

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

NamedRange Arabirim

Microsoft.Office.Tools.Excel Ad Alanı