NotifySelectionChanged() private method

private NotifySelectionChanged ( object ob, bool canCut, bool canCopy, bool canPaste, bool canDelete ) : void
ob object
canCut bool
canCopy bool
canPaste bool
canDelete bool
return void
Example #1
0
 internal void NotifySelectionChanged(object ob, bool canCut, bool canCopy, bool canPaste, bool canDelete)
 {
     GuiDispatch.InvokeSync(
         delegate { if (!disposed)
                    {
                        designer.NotifySelectionChanged(ob, canCut, canCopy, canPaste, canDelete);
                    }
         }
         );
 }