Example #1
0
 public GridLabel(GridLabel gridlabel) : base(gridlabel)
 {
     _datasource  = gridlabel.DataSource;
     _sortoption  = gridlabel.SortOption;
     _eventtype   = gridlabel.EventType;
     _bshowatreal = gridlabel.bShowAtReal;
     _bMergeCell  = gridlabel.bMergeCell;
 }
Example #2
0
 public CalculateColumn(GridLabel gridlalel)
     : base(gridlalel)
 {
     _name = gridlalel.Name;
 }
Example #3
0
 public GroupObject(GridLabel gridlabel) : base(gridlabel)
 {
     _datasource = gridlabel.DataSource;
     _sortoption = gridlabel.SortOption;
 }
Example #4
0
 public DBText(GridLabel gridlabel) : base(gridlabel)
 {
     _datasource = gridlabel.DataSource;
     _sortoption = gridlabel.SortOption;
 }
Example #5
0
 public GridCalculateColumn(GridLabel gridlalel)
     : base(gridlalel)
 {
     _expression = gridlalel.DataSource.Name;
     _bMergeCell = gridlalel.bMergeCell;
 }
Example #6
0
 public ColumnHeader(GridLabel gridlabel)
     : base(gridlabel)
 {
     _datasource = gridlabel.DataSource;
     _sortoption = gridlabel.SortOption;
 }
        protected override Cell AddALocaleCell(XmlElement xecc, Section section)
        {
            Cell   cell = null;
            string type = xecc.GetAttribute("Type");

            if (!section.CanBeParent(type))
            {
                return(null);
            }
            switch (type.ToLower())
            {
            case "commonlabel":
                cell = new CommonLabel();
                break;

            case "expression":
                cell = new Expression();
                break;

            case "image":
                cell = new Image();
                break;

            case "algorithmcalculator":
                cell = new AlgorithmCalculator();
                break;

            case "gridlabel":
                cell = new GridLabel();
                break;

            case "gridboolean":
                cell = new GridBoolean();
                break;

            case "gridimage":
                //cell=new GridImage();
                break;

            case "griddecimal":
                cell = new GridDecimal();
                break;

            case "gridcalculatecolumn":
                cell = new GridCalculateColumn();
                break;

            case "gridcolumnexpression":
                cell = new GridColumnExpression();
                break;

            case "griddecimalalgorithmcolumn":
                cell = new GridDecimalAlgorithmColumn();
                break;

            case "gridalgorithmcolumn":
                cell = new GridAlgorithmColumn();
                break;

            case "griddatetime":
                cell = new GridDateTime();
                break;

            case "gridexchangerate":
                //cell=new GridExchangeRate();
                break;

            case "superlabel":
                cell = new SuperLabel();
                break;

            case "gridproportiondecimal":
                cell = new GridProportionDecimal();
                break;
            }
            if (cell != null)
            {
                ConvertFromLocaleInfo(xecc, cell);
                section.Cells.Add(cell);
            }
            return(cell);
        }