Exemple #1
0
 //----------------------------------------------------------------------------------------------------x
 /// <summary>Adds a report object to the container and sets the alignment.</summary>
 /// <param name="rX">X-coordinate of the report object</param>
 /// <param name="rY">Y-coordinate of the report object</param>
 /// <param name="repObj">Report object to add to the container</param>
 public void AddRC_MM(Double rX, Double rY, RepObj repObj)
 {
     AddRC(RT.rPointFromMM(rX), RT.rPointFromMM(rY), repObj);
 }
Exemple #2
0
 //----------------------------------------------------------------------------------------------------x
 /// <summary>Initializes a new pen properties object</summary>
 /// <param name="report">Report to which this pen belongs</param>
 /// <param name="rWidthMM">Width of the pen in millimeter</param>
 /// <param name="color">Color of the pen</param>
 /// <param name="rPatternOn">Number of 1/72-units of the on-pattern</param>
 /// <param name="rPatternOff">Number of 1/72-units of the off-pattern</param>
 public PenPropMM(Report report, Double rWidthMM, Color color, Double rPatternOn, Double rPatternOff) : base(report, RT.rPointFromMM(rWidthMM), color, rPatternOn, rPatternOff)
 {
 }