CSKernelClient.fInput.getText C# (CSharp) Метод

getText() публичный Метод

public getText ( ) : string
Результат string
        public string getText()
        {
            return tx_server.Text;
        }

Usage 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::getText