Cocoa.Application.EndSheet C# (CSharp) Method

EndSheet() public method

public EndSheet ( Cocoa sheet ) : void
sheet Cocoa
return void
        public void EndSheet(Cocoa.Window sheet)
        {
            if (sheet == null)
                throw new ArgumentNullException ("sheet");
            ObjCMessaging.objc_msgSend (NativeObject, "endSheet:", typeof (void), typeof (System.IntPtr), sheet.NativeObject);
        }

Same methods

Application::EndSheet ( Cocoa sheet, int returnCode ) : void