Esempio n. 1
0
        internal SLDownBars Clone()
        {
            SLDownBars db = new SLDownBars(this.ShapeProperties.listThemeColors);

            db.ShapeProperties = this.ShapeProperties.Clone();

            return(db);
        }
Esempio n. 2
0
        internal SLDownBars Clone()
        {
            SLDownBars db = new SLDownBars(this.ShapeProperties.listThemeColors, false, this.ShapeProperties.ThrowExceptionsIfAny);

            db.ShapeProperties = this.ShapeProperties.Clone();

            return(db);
        }
Esempio n. 3
0
        internal SLDownBars Clone()
        {
            SLDownBars db = new SLDownBars(this.ShapeProperties.listThemeColors);
            db.ShapeProperties = this.ShapeProperties.Clone();

            return db;
        }
Esempio n. 4
0
 internal SLUpDownBars(List <System.Drawing.Color> ThemeColors, bool IsStylish = false)
 {
     this.iGapWidth = 150;
     this.UpBars    = new SLUpBars(ThemeColors, IsStylish);
     this.DownBars  = new SLDownBars(ThemeColors, IsStylish);
 }
 internal SLUpDownBars(List <System.Drawing.Color> ThemeColors, bool IsStylish, bool ThrowExceptionsIfAny)
 {
     this.iGapWidth = 150;
     this.UpBars    = new SLUpBars(ThemeColors, IsStylish, ThrowExceptionsIfAny);
     this.DownBars  = new SLDownBars(ThemeColors, IsStylish, ThrowExceptionsIfAny);
 }