Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== PrintSetBrush function ====== ==== Description ==== Sets the style, hatch, and color of the brush as defined by the Windows SDK. ==== Syntax ==== //status// = **PrintSetBrush**(//style//, //hatch//, //color//) ==== Parameters ==== The PrintSetBrush function has the following parameters: ^Parameter^Description^ |Style|As defined in PRINT_EQUATES, and Windows SDK\\ \\ __Value__ - __Description__\\ 0 - Solid line.\\ 1 - Hollow line.\\ 2 - Hatched line.\\ 3 - Patterned line.| |hatch|As defined in PRINT_EQUATES, and Windows SDK\\ \\ __Value__ - __Description__\\ 0 - Horizontal line\\ 1 - Vertical line.\\ 2 - Forward diagonal line.\\ 3 - Backward diagonal line.\\ 4 - Crossed line.| |color|RGB based color.| ==== Returns ==== True for successful execution or False for failure. ==== Example ==== <code> /* Sets the print brush to hatched style with crossed lines. */ PrintSetBrush(2, 4, 0) </code> guides/programming/programmers_reference_manual/printsetbrush.txt Last modified: 2024/06/19 20:20by 127.0.0.1