ImageGear for C and C++ on Windows v19.3 - Updated
IG_vect_hatchline_get_basepoint
API Reference Guide > Vector Component API Reference > Vector Component Functions Reference > Hatch Line Functions > IG_vect_hatchline_get_basepoint

This function gets the pointer to the base point of the hatch line.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_vect_hatchline_get_basepoint(
        HIG_VECT_HATCHLINE hHatchline, 
        IGVectPoint2D** lplpBasePoint
);

Arguments:

Name Type Description
hHatchline HIG_VECT_HATCHLINE Handle of the hatch line.
lplpBasePoint IGVectPoint2D** Double pointer to the base point being returned.

Return Value:

Returns 0 if successful. Otherwise, returns the number of ImageGear errors that occurred during this function call.

Supported Raster Image Formats:

This function does not process image pixels.

Sample:

None

Example:

 
Copy Code
IGVectPoint2D* lpBasePoint;
IG_vect_hatch_get_basepoint(hHatchLine, &lpBasePoint);

Remarks:

The base point is a start point of the first line in the hatch.