ClassesClassesClassesClasses | | | | Operators

set_line_styleT_set_line_styleSetLineStyleset_line_styleSetLineStyleSetLineStyle (Operator)

Name

set_line_styleT_set_line_styleSetLineStyleset_line_styleSetLineStyleSetLineStyle — Define a contour output pattern.

Signature

set_line_style( : : WindowHandle, Style : )

Herror T_set_line_style(const Htuple WindowHandle, const Htuple Style)

Herror set_line_style(const HTuple& WindowHandle, const HTuple& Style)

void HWindow::SetLineStyle(const HTuple& Style) const

void SetLineStyle(const HTuple& WindowHandle, const HTuple& Style)

void HWindow::SetLineStyle(const HTuple& Style) const

void HOperatorSetX.SetLineStyle(
[in] VARIANT WindowHandle, [in] VARIANT Style)

void HWindowX.SetLineStyle([in] VARIANT Style)

static void HOperatorSet.SetLineStyle(HTuple windowHandle, HTuple style)

void HWindow.SetLineStyle(HTuple style)

Description

set_line_styleset_line_styleSetLineStyleset_line_styleSetLineStyleSetLineStyle defines the output pattern of the margin of regions and of XLD contours. The information is used by operators like disp_regiondisp_regionDispRegiondisp_regionDispRegionDispRegion, disp_linedisp_lineDispLinedisp_lineDispLineDispLine, disp_polygondisp_polygonDispPolygondisp_polygonDispPolygonDispPolygon etc. The current value can be queried with get_line_styleget_line_styleGetLineStyleget_line_styleGetLineStyleGetLineStyle. StyleStyleStyleStyleStylestyle contains up to five pairs of values. The first value is the length of the visible contour part, the second is the length of the invisible part. The value pairs are used cyclical for contour output.

Attention

set_line_styleset_line_styleSetLineStyleset_line_styleSetLineStyleSetLineStyle does an implicit polygon approximation (see set_line_approx(::WindowHandle,3:)set_line_approx(WindowHandle,3)SetLineApprox(WindowHandle,3)set_line_approx(WindowHandle,3)SetLineApprox(WindowHandle,3)SetLineApprox(WindowHandle,3)). It is only possible to enlarge it with set_line_approxset_line_approxSetLineApproxset_line_approxSetLineApproxSetLineApprox.

Parallelization

Parameters

WindowHandleWindowHandleWindowHandleWindowHandleWindowHandlewindowHandle (input_control)  window HWindow, HTupleHTupleHTupleHWindowX, VARIANTHtuple (integer) (IntPtr) (Hlong) (Hlong) (Hlong) (Hlong)

Window_id.

StyleStyleStyleStyleStylestyle (input_control)  integer-array HTupleHTupleHTupleVARIANTHtuple (integer) (int / long) (Hlong) (Hlong) (Hlong) (Hlong)

Contour pattern.

Default value: []

Typical range of values: 1 ≤ Style Style Style Style Style style ≤ 120

Example (HDevelop)

* stroke line: X-Windows
set_line_style(WindowHandle,[20,7])
* point-stroke line: X-Windows
set_line_style(WindowHandle,[20,7,3,7])
* passing line (standard)
set_line_style(WindowHandle,[])

Example (C)

Htuple LineStyle ;

/* stroke line: X-Windows */
create_tuple(&LineStyle,2) ;
set_i(LineStyle,20,0) ;
set_i(LineStyle,7,1) ;
T_set_line_style(WindowHandle,LineStyle) ;
destroy_tuple(LineStyle) ;

/* point-stroke line: X-Windows */
create_tuple(&LineStyle,4) ;
set_i(LineStyle,20,0) ;
set_i(LineStyle,7,1) ;
set_i(LineStyle,3,2) ;
set_i(LineStyle,7,3) ;
T_set_line_style(WindowHandle,LineStyle) ;
destroy_tuple(LineStyle) ;

/* passing line (standard) */
create_tuple(&LineStyle,0) ;
T_set_line_style(WindowHandle,LineStyle) ;
destroy_tuple(LineStyle) ;

Example (HDevelop)

* stroke line: X-Windows
set_line_style(WindowHandle,[20,7])
* point-stroke line: X-Windows
set_line_style(WindowHandle,[20,7,3,7])
* passing line (standard)
set_line_style(WindowHandle,[])

Example (HDevelop)

* stroke line: X-Windows
set_line_style(WindowHandle,[20,7])
* point-stroke line: X-Windows
set_line_style(WindowHandle,[20,7,3,7])
* passing line (standard)
set_line_style(WindowHandle,[])

Example (HDevelop)

* stroke line: X-Windows
set_line_style(WindowHandle,[20,7])
* point-stroke line: X-Windows
set_line_style(WindowHandle,[20,7,3,7])
* passing line (standard)
set_line_style(WindowHandle,[])

Example (HDevelop)

* stroke line: X-Windows
set_line_style(WindowHandle,[20,7])
* point-stroke line: X-Windows
set_line_style(WindowHandle,[20,7,3,7])
* passing line (standard)
set_line_style(WindowHandle,[])

Result

set_line_styleset_line_styleSetLineStyleset_line_styleSetLineStyleSetLineStyle returns 2 (H_MSG_TRUE) if the parameter is correct and the window is valid. Otherwise an exception is raised.

Possible Predecessors

get_line_styleget_line_styleGetLineStyleget_line_styleGetLineStyleGetLineStyle

Possible Successors

disp_regiondisp_regionDispRegiondisp_regionDispRegionDispRegion

See also

get_line_styleget_line_styleGetLineStyleget_line_styleGetLineStyleGetLineStyle, set_line_approxset_line_approxSetLineApproxset_line_approxSetLineApproxSetLineApprox, disp_regiondisp_regionDispRegiondisp_regionDispRegionDispRegion

Module

Foundation


ClassesClassesClassesClasses | | | | Operators