The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator 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?