Exemple #1
0
        public virtual void OnFileCommand(DSOFramer.dsoFileCommandType item, ref bool cancel)
        {
            _DFramerCtlEvents_OnFileCommandEvent onfilecommandEvent = new _DFramerCtlEvents_OnFileCommandEvent(item, cancel);

            this.parent.RaiseOnOnFileCommand(this.parent, onfilecommandEvent);
            cancel = onfilecommandEvent.cancel;
        }
Exemple #2
0
 internal void RaiseOnOnFileCommand(object sender, _DFramerCtlEvents_OnFileCommandEvent e)
 {
     if ((this.OnFileCommand != null))
     {
         this.OnFileCommand(sender, e);
     }
 }