'Declaration Public Overridable Sub ResetNoteIndicatorPosition()
'Usage Dim instance As StyleInfo instance.ResetNoteIndicatorPosition()
public virtual void ResetNoteIndicatorPosition()
'Declaration Public Overridable Sub ResetNoteIndicatorPosition()
'Usage Dim instance As StyleInfo instance.ResetNoteIndicatorPosition()
public virtual void ResetNoteIndicatorPosition()
fpSpread1.ActiveSheet.SetNote(1, 1, "Test"); FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); si.NoteIndicatorSize = new Size(10, 10); si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight; si.ResetNoteIndicatorPosition(); si.ResetNoteIndicatorSize(); fpSpread1.ActiveSheet.DefaultStyle = si;
fpSpread1.ActiveSheet.SetNote(1, 1, "Test") Dim si As New FarPoint.Win.Spread.StyleInfo() si.NoteIndicatorSize = New Size(10, 10) si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight si.ResetNoteIndicatorPosition() si.ResetNoteIndicatorSize() fpSpread1.ActiveSheet.DefaultStyle = si