cadencii.ProgressBarWithLabelUi.setWidth C# (CSharp) Method

setWidth() public method

public setWidth ( int value ) : void
value int
return void
        public void setWidth( int value )
        {
            this.Width = value;
        }

Usage Example

 public void setWidth(int value)
 {
     if (ptrUi == null)
     {
         return;
     }
     ptrUi.setWidth(value);
 }