Gets or sets the line width. The default value is 0.1.

Namespace: WW.Cad.IO
Assembly: WW.Cad (in WW.Cad.dll) Version: 3.5.32.11

Syntax

C#
public float LineWidth { get; set; }
Visual Basic
Public Property LineWidth As Single
	Get
	Set
Visual C++
public:
property float LineWidth {
	float get ();
	void set (float value);
}

Remarks

Quote from the PDF spec: It is a nonnegative number expressed in user space units. A line width of 0 denotes the thinnest line that can be rendered at device resolution: 1 device pixel wide.

This value is only used if GraphicsConfig.DisplayLineWeight is set to false. Otherwise the normal line weight of the entity is used multiplied by GraphicsConfig.DotsPerInch, times the 100th of mm to inch factor. To choose a proper DotsPerInch value, take into account that the size of a PDF pixel is 1 / 72th of an inch.

See Also