macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

bottomMargin

下のマージンの高さを返します(Pointで)

解説

下のマージンの高さを返します。(Pointで)

返り値

( float )

下のマージン

引数

フレームワーク

ApplicationKit

クラス

NSPrintInfo

Instance Methods

使用可能

10.0

参照

- setBottomMargin:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
NSPrintInfo *pInfo = [NSPrintInfo sharedPrintInfo] ;
NSPageLayout *pageLayout = [NSPageLayout pageLayout];

[pageLayout beginSheetWithPrintInfo:pInfo
            modalForWindow:[sender window] 
            delegate:self 
            didEndSelector:@selector(didEndPageLayout) 
            contextInfo:nil ];
            
            NSLog([NSString stringWithFormat:@"%.1f",[pInfo bottomMargin]]);
}
-(void)didEndPageLayout
{
NSLog(@"close");
}

@end