PKStudio.Helpers.EditorsFormsController.OnShowEditor C# (CSharp) Method

OnShowEditor() public method

public OnShowEditor ( IEventComponent component ) : void
component IEventComponent
return void
        void OnShowEditor(IEventComponent component)
        {
            if (component != null)
            {
                if (this.ShowEditorEvent != null)
                {
                    this.ShowEditorEvent(this, new ShowEditorEditorEventArgs(component));
                }
            }
        }