CSKernelClient.fInput.setDescrip C# (CSharp) Method

setDescrip() public method

public setDescrip ( string descrip ) : void
descrip string
return void
        public void setDescrip(string descrip)
        {
            lb_descrip.Text = descrip;
        }

Usage Example

Example #1
0
        //--------------------------------------------------------------------------------------------------------------------
        public static bool getInput(ref string value, String descrip, String title)
        {
            fInput f = new fInput();

            f.setTitle(title);
            f.setDescrip(descrip);
            f.setText(value);
            f.ShowDialog();
            if (f.getOk())
            {
                value = f.getText();
                return(true);
            }
            else
            {
                return(false);
            }
        }
All Usage Examples Of CSKernelClient.fInput::setDescrip