System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.ShowDialog C# (CSharp) Method

ShowDialog() public method

Displays a dialog-based user interface that allows the user to configure the various options.
public ShowDialog ( ) : bool
return bool
            public bool ShowDialog()
            {
                object value = RecurseFindValue(this);

                if (value == null)
                {
                    return false;
                }

                return _service.ShowDialog(this, value);
            }