_Workbook.Author Property
Returns or sets the author of the comment. Read-only String.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Property Author As String
Get
Set
'Usage
Dim instance As _Workbook
Dim value As String
value = instance.Author
instance.Author = value
string Author { get; set; }
Property Value
Type: System.String
Returns String.
Examples
This example deletes all comments added by Jean Selva on the active sheet.
For Each c in ActiveSheet.Comments If c.Author= "Jean Selva" Then c.Delete Next