Exemple #1
0
            //----------------------------------------------------------
            //--------------------- CONSTRUCTEUR -----------------------
            //----------------------------------------------------------

            public PickerWheelColumn(string columnName, int startIndex, int width, ColumnAlignement alignement)
            {
                this.Datas      = new List <string>();
                this.StartIndex = startIndex;
                this.Width      = width;
                this.Alignement = alignement;
                this.ColumnName = columnName;
            }
Exemple #2
0
 //----------------------------------------------------------
 //--------------------- CONSTRUCTEUR -----------------------
 //----------------------------------------------------------
 public PickerWheelColumn(string columnName,int startIndex, int width,ColumnAlignement alignement)
 {
     this.Datas = new List<string>();
     this.StartIndex = startIndex;
     this.Width = width;
     this.Alignement = alignement;
     this.ColumnName = columnName;
 }