IfcDoc.CtlProperties.textBoxLocaleURL_TextChanged C# (CSharp) Method

textBoxLocaleURL_TextChanged() private method

private textBoxLocaleURL_TextChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void textBoxLocaleURL_TextChanged(object sender, EventArgs e)
        {
            if (!this.textBoxLocaleURL.Enabled)
                return;

            if (this.listViewLocale.SelectedItems.Count > 0)
            {
                foreach (ListViewItem lvi in this.listViewLocale.SelectedItems)
                {
                    DocLocalization docLocal = (DocLocalization)lvi.Tag;
                    docLocal.URL = this.textBoxLocaleURL.Text;
                }
            }
        }
CtlProperties