Ejemplo n.º 1
0
 /// <summary>
 /// Inicializa uma nova instância da classe <see cref="Spartacus.Reporting.Field"/>.
 /// </summary>
 public Field()
 {
     this.v_groupedvalue = false;
     this.v_row          = 0;
     this.v_format       = "###,###,###,###,##0.00";
     this.v_border       = null;
     this.v_blank        = "";
     this.v_font         = null;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Inicializa uma nova instância da classe <see cref="Spartacus.Reporting.Field"/>.
        /// </summary>
        public Field(string p_column, string p_title, Spartacus.Reporting.FieldAlignment p_align, double p_fill, Spartacus.Database.Type p_type)
        {
            this.v_groupedvalue = false;
            this.v_row          = 0;
            this.v_format       = "###,###,###,###,##0.00";
            this.v_border       = null;
            this.v_blank        = "";
            this.v_font         = null;

            this.v_column = p_column;
            this.v_title  = p_title;
            this.v_align  = p_align;
            this.v_fill   = p_fill;
            this.v_type   = p_type;
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Inicializa uma nova instância da classe <see cref="Spartacus.Reporting.Field"/>.
 /// </summary>
 public Field()
 {
     this.v_groupedvalue = false;
     this.v_row = 0;
     this.v_format = "###,###,###,###,##0.00";
     this.v_border = null;
     this.v_blank = "";
     this.v_font = null;
 }