PivotFieldTooltipShowingEventArgs(PivotGridViewInfo, Point, String) Constructor
Initializes a new instance of the PivotFieldTooltipShowingEventArgs class.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.2.dll
Declaration
public PivotFieldTooltipShowingEventArgs(
PivotGridViewInfo viewInfo,
Point point,
string text
)
Parameters
Name | Type | Description |
---|---|---|
viewInfo | DevExpress.XtraPivotGrid.ViewInfo.PivotGridViewInfo | A DevExpress.XtraPivotGrid.ViewInfo.PivotGridViewInfo object. |
point | Point | A Point structure that represents the coordinates of the tooltip. This value is assigned to the PivotFieldTooltipShowingEventArgs.Point property. |
text | String | A String that specifies the tooltip text. This value is assigned to the PivotFieldTooltipShowingEventArgs.Text property. |
Remarks
Instances of the PivotFieldTooltipShowingEventArgs class are automatically created, initialized and passed to the PivotGridControl.FieldTooltipShowing event handlers. Typically, there is no need to call this constructor directly from your code.
See Also