isTransparent
ボックスは透明かを返します
解説
ボックスは透明かを返します。
返り値
( BOOL )
ボックスは透明かYES/NO
引数
フレームワーク
ApplicationKit
クラス
NSBox
Instance Methods
使用可能
10.5
参照
- setTitlePosition:
- setTitle:
- setTitleFont:
- setFrameFromContentFrame:
- sizeToFit
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 [myOutlet setTransparent:YES]; ([myOutlet isTransparent])?NSLog(@"YES"):NSLog(@"NO"); #endif } @end