- URLAtIndex:effectiveRange:
- boundingRectWithSize:options:
Deprecated 非推奨
Use draw
instead.
draw
を代わりに使ってください。
Availability 有効性
Technology
- (void)drawWithRect:(NSRect
)rect
options:(NSStringDrawingOptions
)options;
rect
The rectangle specifies the rendering origin in the current graphics context. この矩形は、描出原点を現在のグラフィック文脈において指定します。
options
オプション
The string drawing options. See NSString
for the available options.
文字列描画オプション。NSString
を利用可能なオプションとして見てください。
The rect
argument's origin field specifies the rendering origin. The point is interpreted as the baseline origin by default. With NSString
, it is interpreted as the upper left corner of the line fragment rect. The size field specifies the text container size. The width part of the size field specifies the maximum line fragment width if larger than 0
. The height defines the maximum size that can be occupied with text if larger than 0
and NSString
is specified. If NSString
is not specified, height is ignored and considered to be single-line rendering (NSLine
and NSLine
are treated as NSLine
).
rect
引数の持つ原点フィールドは、描出原点を指定します。この座標は、初期状態でベースライン原点として解釈されます。NSString
では、それは行断片rectの上方左隅として解釈されます。サイズフィールドは、テキストコンテナサイズを指定します。サイズフィールドの幅部分は、最大行断片を指定します、もし0
より大きいならば。高さは、テキストで占有可能な最大サイズを定義します、もし0
より大きくそしてNSString
が指定されるならば。NSString
が指定されるならば、高さは無視されます、そして単一行を描出するよう考慮されます(NSLine
とNSLine
は NSLine
として扱われます)。
You should only invoke this method when there is a current graphics context. あなたは、現在のグラフィック文脈がある場合にこのメソッドを発動するだけであるべきです。
- URLAtIndex:effectiveRange:
- boundingRectWithSize:options: