//----------------------------------------------------- public void S3_UpdateIfWider(float newWidth, ColumnSpecificWidthLevel level) { //called at state3 only if (newWidth > this.actualWidth) { this.actualWidth = newWidth; this.SpecificWidthLevel = level; } }
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; }