Aura.Channel.Scripting.Scripts.DialogInput.DialogInput C# (CSharp) Метод

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

public DialogInput ( string title = "Input", string text = "", byte maxLength = 20, bool cancelable = true ) : Aura.Mabi
title string
text string
maxLength byte
cancelable bool
Результат Aura.Mabi
		public DialogInput(string title = "Input", string text = "", byte maxLength = 20, bool cancelable = true)
		{
			this.Title = title;
			this.Text = text;
			this.MaxLength = maxLength;
			this.Cancelable = cancelable;
		}