Previous topic

26. Overview Group Object

Next topic

28. Overview Lines and Arrows

This Page

27. Overview HatchΒΆ

Example

x = [1,2,3]
y = [1,5,2]
h = plot(x, y)
hPage = h[1]
hData = h[3]
XYShowHatch(hData, 1)
hHatch = XYGetHatch(hData)
HatchSetColor(hHatch, [255, 0, 0])
XYSetHatch(hData, hHatch)
HatchDestroy(hHatch)
PageReplot(hPage)
  Create and Destroy
HatchCreate HatchCreate creates a hatch object. A hatch object is used for xy datasets.
HatchDestroy HatchDestroy destroys the given hatch object and frees any memory the object occupied.
  Set
HatchSetColor HatchSetColor sets the hatch line color.
HatchSetDistance HatchSetDistance sets the distance between the hatch lines
HatchSetOffset HatchSetOffset sets the offset of the hatch origin.
HatchSetStyle HatchSetStyle sets the hatch style.
HatchSetWidth HatchSetWidth sets the hatch line width in 0.1 mm steps.
  Get
HatchGetColor HatchGetColor returns the hatch line color.
HatchGetDistance HatchGetDistance returns the distance between the two hatch lines in centimeters
HatchGetOffset HatchGetOffset returns the offset to the hatch origin in centimeters.
HatchGetStyle HatchGetStyle returns the hatch style.
HatchGetWidth HatchGetWidth returns the hatch line width in steps of 0.1 mm.

id-1537257