私が欲しいのは: オブジェクトの位置をミリメートルで設定します。フィールド {Document} を上から 1 センチメートル (10 ミリメートル)、左から 1 センチメートルで印刷する必要があるとしますが、できません。
これは私が持っているものです:
//rpt is a report class: ReportClass rpt, passed as parameter
Section Seccion = rpt.ReportDefinition.Sections[0];
foreach (Formato item in f)
{
ReportObject Objeto = Seccion.ReportObjects["Document1"];
Objeto.Top = 10; //Millimeters
Objeto.Left = 10; //Millimeters
}