Gets or sets the default size for the note indicator for cells in this row.
Syntax
Visual Basic (Declaration) | |
---|
Public Property NoteIndicatorSize As Size |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AlternatingRow
Dim value As Size
instance.NoteIndicatorSize = value
value = instance.NoteIndicatorSize |
C# | |
---|
public Size NoteIndicatorSize {get; set;} |
Exceptions
Example
This example sets the size of the note indicator.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.AlternatingRows[0].NoteIndicatorSize = new Size(10, 10);
fpSpread1.ActiveSheet.SetNote(0, 0, "Test");
|
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.AlternatingRows(0).NoteIndicatorSize = New Size(10, 10)
FpSpread1.ActiveSheet.SetNote(0, 0, "Test")
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also