SETLINESTYLE |
Top Previous Next |
Syntax SETLINESTYLE(win as WINDOW,style as INT,width as INT) Description Sets the line drawing style and line width for a window. Parameters win - Window to set style. style - New line drawing style. width - New line width. Return value None Remarks Style can be one of: @LSSOLID, @LSDASH, @LSDOT, @LSDASHDOT, @LSDASHDOTDOT or @LSINSIDE. Width determines the line width for solid lines. Example usage SETLINESTYLE win1, @LSSOLID, 4 |