Click or drag to resize

CommandListAppendEnableDashedLine Method

Enables or disables the dashed line marking mode.

Namespace: RAYLASE.SPICE3.ClientLib
Assembly: RAYLASE.SPICE3.ClientLib (in RAYLASE.SPICE3.ClientLib.dll) Version: 3.4.1
Syntax
C#
public void AppendEnableDashedLine(
	bool enable,
	double position = -1
)

Parameters

enable  Boolean
true to enable, false to disable.
position  Double  (Optional)
The start position within the pattern. A negative value does not change the current start position.
Remarks

Appends a DASHED_LINE_ENABLE command to the list. A pattern must be separately supplied - see AppendDashedLinePattern(ListDouble).

The position defines where within the pattern the dashed line is started, and therefore affects the first dashed line section. For example, a position of 2000 for a on-off pattern of '5000;1000' will yield an initial dash of 3000um (= 5000 - 2000) followed by a spacing of 1000um before the pattern is started over.

Negative position values are ignored by the firmware. Therefore, a negative value can be supplied to merely change the flag without changing the current position.

See Also