PointLineSeries3DIsPositionOver Method (Int32, Int32, Int32, Boolean, Boolean, Boolean) |
LightningChart .NET Help
Additional method to check if position is over, solves also index of the nearest point or line segment if it hits it.
Namespace:
Arction.Wpf.Charting.Series3D
Assembly:
Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool IsPositionOver(
int x,
int y,
out int index,
out bool overLine,
out bool overPoint,
bool useDIP = false
)
Public Function IsPositionOver (
x As Integer,
y As Integer,
<OutAttribute> ByRef index As Integer,
<OutAttribute> ByRef overLine As Boolean,
<OutAttribute> ByRef overPoint As Boolean,
Optional useDIP As Boolean = false
) As Boolean
public:
bool IsPositionOver(
int x,
int y,
[OutAttribute] int% index,
[OutAttribute] bool% overLine,
[OutAttribute] bool% overPoint,
bool useDIP = false
)
Parameters
- x
- Type: SystemInt32
X screen coordinate. - y
- Type: SystemInt32
Y screen coordinate. - index
- Type: SystemInt32
Index of nearest point or line segment. - overLine
- Type: SystemBoolean
Is the mouse over line. - overPoint
- Type: SystemBoolean
Is the mouse over a point. - useDIP (Optional)
- Type: SystemBoolean
Use DIP instead of pixels for coordinates.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:Arction.Wpf.Charting.Series3D.PointLineSeries3D.IsPositionOver(System.Int32,System.Int32,System.Int32@,System.Boolean@,System.Boolean@,System.Boolean)"]
See Also