//-----------------------------------------------------
 public void S3_UpdateIfWider(float newWidth, ColumnSpecificWidthLevel level)
 {
     //called at state3 only
     if (newWidth > this.actualWidth)
     {
         this.actualWidth        = newWidth;
         this.SpecificWidthLevel = level;
     }
 }
 //-----------------------------------------------------
 public void S3_UpdateIfWider(float newWidth, ColumnSpecificWidthLevel level)
 {
     //called at state3 only
     if (newWidth > this.actualWidth)
     {
         this.actualWidth = newWidth;
         this.SpecificWidthLevel = level;
     }
 }
Ejemplo n.º 3
0
            public void SetWidth(float width, ColumnSpecificWidthLevel specificWidthLevel)
            {
#if DEBUG
                if (width > 360)
                {
                }
#endif
                this.SpecificWidthLevel = specificWidthLevel;
                _actualWidth            = width;
            }
 public void SetWidth(float width, ColumnSpecificWidthLevel specificWidthLevel)
 {
     this.SpecificWidthLevel = specificWidthLevel;
     this.actualWidth = width;
 }
 public void AddMoreWidthValue(float offset, ColumnSpecificWidthLevel level)
 {
     this.actualWidth += offset;
     this.SpecificWidthLevel = level;
 }
 public void SetWidth(float width, ColumnSpecificWidthLevel specificWidthLevel)
 {
     this.SpecificWidthLevel = specificWidthLevel;
     this.actualWidth        = width;
 }
 public void AddMoreWidthValue(float offset, ColumnSpecificWidthLevel level)
 {
     this.actualWidth       += offset;
     this.SpecificWidthLevel = level;
 }