Reports
Overview of report processing in the original platform
[Mobilize.WebMap.Common.Attributes.Observable]
public partial class d_my_report
: Mobilize.Web.DataManager, Mobilize.Web.IDataManager
{
[Mobilize.WebMap.Common.Attributes.Intercepted]
public Mobilize.Web.DmText name_t { get; set; }
[Mobilize.WebMap.Common.Attributes.Intercepted]
public Mobilize.Web.DmColumn _name { get; set; }
...
public d_my_report()
: base()
{
...
this.PrintSpecification.PrinterName = "";
this.PrintSpecification.DocumentName = "";
this.PrintSpecification.Orientation = Mobilize.Web.CaseExtensions.String("0");
this.PrintSpecification.Margin.Left = 110;
this.PrintSpecification.Margin.Right = 110;
this.PrintSpecification.Margin.Top = 96;
this.PrintSpecification.Margin.Bottom = 96;
this.PrintSpecification.Paper.Source = 0;
this.PrintSpecification.Paper.Size = 0;
...
this.name_t = new Mobilize.Web.DmText();
this.name_t.Band = Mobilize.Web.CaseExtensions.String("detail");
this.name_t.Alignment = 1;
this.name_t.Text = "Name:";
this.name_t.Border = 0;
this.name_t.Color = "33554432";
this.name_t.X = 37;
this.name_t.Y = 4;
this.name_t.Height = 64;
this.name_t.Width = 174;
this.name_t.Name = Mobilize.Web.CaseExtensions.String("name_t");
this.name_t.Visible = true;
this.name_t.Font.FontFace = "Tahoma";
this.name_t.Font.Height = -10;
...
this.name_t.Background.Color = "536870912";
this._name = new Mobilize.Web.DmColumn();
this._name.Band = Mobilize.Web.CaseExtensions.String("detail");
...
}
}Rendering in the target platform
ReportWatcher service
Last updated
Was this helpful?