AD
Administrator
Syncfusion Team
March 20, 2005 11:29 AM UTC
Hi David,
Sorry for the delay in getting back to you. This was not possible in version 3.0.1.0 since the line width was of type integer. This has been changed to float in the current version. The latest version will be available for download this week. Here is the usage code snippet
IPDFGraphicState props = pdfDoc.CreateGraphicState();
props.LineWidth = 0.5f;
pdfDoc.LastPage.Graphics.DrawLine(0,10,100,10,props);
Thanks,
Stephen.
>Is is possible to draw a line that is less than 1 point in width?