fCraft.Drawing.DrawOperation.RaiseBeginningEvent C# (CSharp) Method

RaiseBeginningEvent() protected static method

protected static RaiseBeginningEvent ( DrawOperation op ) : bool
op DrawOperation
return bool
        protected static bool RaiseBeginningEvent( DrawOperation op )
        {
            var h = Beginning;
            if ( h == null )
                return true;
            var e = new DrawOperationBeginningEventArgs( op );
            h( null, e );
            return !e.Cancel;
        }