![]() |
TopCon API
1.1.0
.Net API to control TopCon devices
|
This class is a special CurvePointList with a maximum capacity of 64 points.
It is intended to use this CurvePointList for the initialization of all AAP and SASCurves.
It is not recommended for use with userDefinedCurves.
More...
Public Member Functions | |
AAPCurvePointList () | |
Standard constructor of the underlying CurvePointList (initialized with a maximum capacity of 64 points). More... | |
![]() | |
CurvePointList (Int32 initialMaxCapacity) | |
Commonly this constructor should not be used as this class has to be inherited. E.g. when creating an AAPCurvePointList, create an instance of the AAPCurvePointList. The constructor will then initialize this base class with the correct parameters (here: max number of points = 64). More... | |
new void | Add (CurvePoint point) |
This method adds a point to the already existing List of curvePoints. More... | |
CurvePoint | GetCurvePointAtIndex (Int32 index) |
Returns the CurvePoint object at the index given as parameter. More... | |
Int32 | GetNumberOfCurvePointsInList () |
This method returns the number of CurvePoint items in the list. Note that it counts 0=empty, 1=one item, ... n=n items ( while any index used in remove.. / add.... methods uses 0 ... n-1 ) More... | |
void | DeleteCurvePointAtIndex (Int32 index) |
This method deletes the list item at the given index (start with 0) More... | |
Boolean | IsPointAlreadyInListByPointXValue (CurvePoint point) |
This method allows to check if a particular point is already in the list. HERE: check is done by comparing the X-values, y-values are ignored. More... | |
Boolean | IsPointAlreadyInListByXValue (Double xcompareValue) |
This method allows to check if a particular point is already in the list. HERE: check is done by comparing the parameter against the X-value of the existing points. More... | |
new void | Clear () |
This function removes all points from the list. More... | |
Int32 | GetMaxNumberOfPoints () |
This function returns the maximum number of Points that can be stored in this object. More... | |
override String | ToString () |
This method returns a string representation of this point list. Example: P(21 | 19) P(24 | 13) More... | |
string | GetLastError () |
Get the last exception message. More... | |
This class is a special CurvePointList with a maximum capacity of 64 points.
It is intended to use this CurvePointList for the initialization of all AAP and SASCurves.
It is not recommended for use with userDefinedCurves.
CH.Regatron.HPPS.TFE.AAPCurvePointList.AAPCurvePointList | ( | ) |
Standard constructor of the underlying CurvePointList (initialized with a maximum capacity of 64 points).