Class GroupBar.BeforePopupEventArgs
Provides data for the BeforePopup event.
Inheritance
System.Object
GroupBar.BeforePopupEventArgs
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class BeforePopupEventArgs : CancelEventArgs
Remarks
The collapsed GroupBar control uses the BeforePopup events to notify users, that GroupBarItem's popup is about to be shown. GroupBar.BeforePopupEventHandler
Constructors
BeforePopupEventArgs(GroupBarItem, Rectangle, Boolean, Boolean)
Initializes a new instance of the GroupBar.BeforePopupEventArgs class.
Declaration
public BeforePopupEventArgs(GroupBarItem item, Rectangle popupBounds, bool flippedX, bool flippedY)
Parameters
Type | Name | Description |
---|---|---|
GroupBarItem | item | The GroupBarItem item. |
System.Drawing.Rectangle | popupBounds | The popup's bounds. |
System.Boolean | flippedX | |
System.Boolean | flippedY |
BeforePopupEventArgs(GroupBarItem, Rectangle, Boolean, Boolean, Boolean)
Initializes a new instance of the GroupBar.BeforePopupEventArgs class.
Declaration
public BeforePopupEventArgs(GroupBarItem item, Rectangle popupBounds, bool cancel, bool flippedX, bool flippedY)
Parameters
Type | Name | Description |
---|---|---|
GroupBarItem | item | The GroupBarItem item. |
System.Drawing.Rectangle | popupBounds | The popup's bounds. |
System.Boolean | cancel |
|
System.Boolean | flippedX | |
System.Boolean | flippedY |
Properties
FlippedX
Indicates whether popup is shown to the left of GroupBar.
Declaration
public bool FlippedX { get; }
Property Value
Type |
---|
System.Boolean |
FlippedY
Indicates whether popup is shown to the top of GroupBar
Declaration
public bool FlippedY { get; }
Property Value
Type |
---|
System.Boolean |
Item
The GroupBarItem that popups.
Declaration
public GroupBarItem Item { get; }
Property Value
Type |
---|
GroupBarItem |
PopupBounds
Gets or sets the popup's bounds.
Declaration
public Rectangle PopupBounds { get; set; }
Property Value
Type |
---|
System.Drawing.Rectangle |