Returns true if the specified client coordinate lies within the shape of the AlarmZone. AlarmZones may overlap, with one more AlarmZones on top of others. This method returns true as long as the coordinate is within the bounds of the AlarmZone, regardless of whether the AlarmZone is covered by another at the specified coordinate.
[Visual Basic]
Public Function IsInsideZone( _
ByVal XCoord As Integer, _
ByVal YCoord As Integer _
) As Boolean
[C#]
public bool IsInsideZone(
int XCoord,
int YCoord
);
[Delphi]
public function IsInsideZone(
XCoord: Int32;
YCoord: Int32
): Boolean;
Remarks
AlarmZones may overlap, with one more AlarmZones on top of others. This method returns true as long as the coordinate is within the bounds of the AlarmZone, regardless of whether the AlarmZone is covered by another at the specified coordinate.
See Also
AlarmZone Class | AlarmZone Members | C1.Win.C1Chart Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |