PKStudio.Helpers.EditorsFormsController.OnShowEditor C# (CSharp) 메소드

OnShowEditor() 공개 메소드

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