XAF_Bootstrap.Controls.XafBootstrapStringEdit.OnInit C# (CSharp) Метод

OnInit() защищенный Метод

protected OnInit ( EventArgs e ) : void
e EventArgs
Результат void
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            if (Helpers.RequestManager.Request.Form[ClientID + "_changed"] == "1")
            {
                Value = Helpers.RequestManager.Request.Form[ClientID];
                if (EditValueChanged != null)
                    EditValueChanged(this, EventArgs.Empty);
            }

            EncodeHtml = false;
            InnerRender();
        }