I have looked through the documentation and I am not seeing anything about the units. Example:
section.PageMargins.Top = 25;
What is the 25? Is it a 25th of an inch, 25 points, 25 pixels, or something else?
Sam
Mike,
Thank you, that is exactly what I needed to know.
For others that are not so familiar with Points, here is a good article that talks about the concept with respect to WPF, though it applies to WinForms, too:
http://blogs.msdn.com/text/archive/2009/12/11/wpf-text-measurement-units.aspx
The Documents assembly generally uses Points.
There are static method on the Infragistics.Win.DrawUtility class for converting PointsToPixels and PixelToPoints.