Class ScrollTipFeedbackEventArgs
Provides data for the ScrollTip event.
Inherited Members
Namespace: Syncfusion.Windows.Forms
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class ScrollTipFeedbackEventArgs : SyncfusionCancelEventArgs
Properties
Action
Returns a ScrollTipActions value that specifies the user action that led to this event.
Declaration
[TraceProperty(true)]
public ScrollTipActions Action { get; }
Property Value
Type |
---|
ScrollTipActions |
BackColor
Gets / sets the backcolor to be used for the ScrollTip text. You can adjust the scroll window size in your event handler when handling a ThumbTrack or Scroll action.
Declaration
[TraceProperty(true)]
public Color BackColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
BorderStyle
Gets / sets the border style to be used for the ScrollTip text. You can adjust the scroll window size in your event handler when handling a ThumbTrack action.
Declaration
[TraceProperty(true)]
public BorderStyle BorderStyle { get; set; }
Property Value
Type |
---|
System.Windows.Forms.BorderStyle |
Font
Gets / sets the font to be used for the ScrollTip text. You can adjust the scroll window size in your event handler when handling a ThumbTrack or Scroll action.
Declaration
[TraceProperty(true)]
public Font Font { get; set; }
Property Value
Type |
---|
System.Drawing.Font |
ForeColor
Gets / sets the text color to be used for the ScrollTip text. You can adjust the scroll window size in your event handler when handling a ThumbTrack or Scroll action.
Declaration
[TraceProperty(true)]
public Color ForeColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
Format
Gets / sets the text layout information for the text in the ScrollTip.
Declaration
[TraceProperty(true)]
public StringFormat Format { get; set; }
Property Value
Type |
---|
System.Drawing.StringFormat |
Location
Gets / sets the location of the ScrollTip window. You can adjust the scroll window size in your event handler when handling a ThumbTrack action.
Declaration
[TraceProperty(true)]
public Point Location { get; set; }
Property Value
Type |
---|
System.Drawing.Point |
ScrollBar
Returns the scrollbar that is the source of this event.
Declaration
[TraceProperty(true)]
public ScrollBars ScrollBar { get; }
Property Value
Type |
---|
System.Windows.Forms.ScrollBars |
Size
Gets / sets the size of the ScrollTip window. You can adjust the scroll window size in your event handler when handling a ThumbTrack action.
Declaration
[TraceProperty(true)]
public Size Size { get; set; }
Property Value
Type |
---|
System.Drawing.Size |
Text
Gets / sets the text to display in the ScrollTip. You can change this text in your event handler during a Scroll action.
Declaration
[TraceProperty(true)]
public string Text { get; set; }
Property Value
Type |
---|
System.String |
Value
Returns the new scroll position.
Declaration
[TraceProperty(true)]
public int Value { get; }
Property Value
Type |
---|
System.Int32 |