Gets or sets whether cell notes are automatically updated when changes are made to the note style or to the text, or notes are added, removed, or moved.
Syntax
Visual Basic (Declaration) | |
---|
Public Property AutoUpdateNotes As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Boolean
instance.AutoUpdateNotes = value
value = instance.AutoUpdateNotes |
C# | |
---|
public bool AutoUpdateNotes {get; set;} |
Property Value
Boolean:
true if the Spread component updates the location and appearance of notes automatically;
false otherwise
Remarks
Example
This example updates notes on the sheet when they change.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.AutoUpdateNotes = true; |
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.AutoUpdateNotes = True |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also