How to draw a line, the thickness of which is specified as..
- Eugene Lutsenko
- Posts: 1649
- Joined: Sat Feb 04, 2012 2:23 am
- Location: Russia, Southern federal district, city of Krasnodar
- Contact:
How to draw a line, the thickness of which is specified as..
How to draw a line, the thickness of which is specified as a parameter?
Re: How to draw a line, the thickness of which is specified
Code: Select all
aLineAttrs := Array(GRA_AL_COUNT)
aLineAttrs[GRA_AL_WIDTH] := GRA_LINEWIDTH_NORMAL // or width in pixel, see GRA.CH for standard values
GraSetAttrLine(oPs,aLineAttrs)
GraLine( ... )
Best regards,
Tom
"Did I offend you?"
"No."
"Okay, give me a second chance."
Tom
"Did I offend you?"
"No."
"Okay, give me a second chance."
- Eugene Lutsenko
- Posts: 1649
- Joined: Sat Feb 04, 2012 2:23 am
- Location: Russia, Southern federal district, city of Krasnodar
- Contact:
Re: How to draw a line, the thickness of which is specified
Thank you! Very pleased to communicate with you, brothers in the Spirit and Mind
Is there somewhere a complete description of graphical functions that start with "DC" with examples?
Is there somewhere a complete description of graphical functions that start with "DC" with examples?
Re: How to draw a line, the thickness of which is specified
Eugene,
The windows help file for express++ should be in your Exp19\Doc directory (express.hlp).
This contains the documentation for all of Rogers express product.
The xDemo.Exe has an example of several of these features, specifically;
FUNCTION XSample_76
Best regards,
Rick
The windows help file for express++ should be in your Exp19\Doc directory (express.hlp).
This contains the documentation for all of Rogers express product.
The xDemo.Exe has an example of several of these features, specifically;
FUNCTION XSample_76
Best regards,
Rick