Bloom.Edit.EditingView.SetModalState C# (CSharp) Method

SetModalState() private method

Prevent navigation while a dialog box is showing in the browser control
private SetModalState ( string isModal ) : void
isModal string
return void
        internal void SetModalState(string isModal)
        {
            _pageListView.Enabled = isModal != "true";
        }

Usage Example

Ejemplo n.º 1
0
 private void SetModalState(string isModal)
 {
     _view.SetModalState(isModal == "true");
 }