WorldEditor.NZone.EncounterGroup.frmSelectObject.frmSelectObject C# (CSharp) Method

frmSelectObject() public method

public frmSelectObject ( string Caption, string SomeText ) : System
Caption string
SomeText string
return System
        public frmSelectObject(string Caption, string SomeText)
        {
            InitializeComponent();
            this.Text = Caption;
            if (string.IsNullOrEmpty(SomeText))
                this.lblSomeText.Text = "";
            else
                this.lblSomeText.Text = SomeText;
        }