This function gets the total line count in the hatch.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_vect_hatch_get_linecount(
HIG_VECT_VECTORHATCH hHatch,
long* lpLineCount
);
|
Name | Type | Description |
---|---|---|
hHatch | HIG_VECT_VECTORHATCH | Handle of the hatch. |
lpLineCount | long* | Pointer to the output count of lines in the hatch. |
Returns 0 if successful. Otherwise, returns the number of ImageGear errors that occurred during this function call.
This function does not process image pixels.
None
Copy Code
|
|
---|---|
long nLineCount;
IG_vect_hatch_get_linecount(hHatch, &nLineCount);
|