_Workbook.Author Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns or sets the author of the comment. Read-only String.
public:
property System::String ^ Author { System::String ^ get(); void set(System::String ^ value); };
public string Author { get; set; }
Public Property Author As String
Property Value
Returns String.
Examples
This example deletes all comments added by Jean Selva on the active sheet.
<span class="label">For Each c in ActiveSheet.Comments If c.</span>
<i>Author</i>
<span class="label">= "Jean Selva" Then c.Delete Next</span>
This example deletes all comments added by Jean Selva on the active sheet.
<span class="label">For Each c in ActiveSheet.Comments If c.</span>
<i>Author</i>
<span class="label">= "Jean Selva" Then c.Delete Next</span>
This example deletes all comments added by Jean Selva on the active sheet.
<span class="label">For Each c in ActiveSheet.Comments If c.</span>
<i>Author</i>
<span class="label">= "Jean Selva" Then c.Delete Next</span>