Instance Method インスタンスメソッド

draw(at:)

Draws the attributed string starting at the specified point in the current graphics context. 属性付文字列をこの指定された点で開始して現在のグラフィック文脈で描画します。

Declaration 宣言

iOS, iPadOS, Mac Catalyst, tvOS, watchOS

func draw(at point: CGPoint)

macOS

func draw(at point: NSPoint)

Parameters パラメータ

point

The point in the current graphics context where you want to start drawing the string. The coordinate system of the graphics context is usually defined by the view in which you are drawing. あなたが文字列の描画を始めたいところの、現在のグラフィック文脈での地点。グラフィック文脈の座標系は、そこにおいてあなたが描画しているビューによって通常は定義されます。

Discussion 議論

This method draws the entire string starting at the specified point. This method draws the line using the attributes specified in the attributed string itself. If newline characters are present in the string, those characters are honored and cause subsequent text to be placed on the next line underneath the starting point. このメソッドは、指定された地点で開始して文字列全体を描画します。このメソッドは、行を属性付文字列それ自体において指定される属性を使って描画します。改行文字が文字列において存在するならば、それら文字は尊重されます、そして続くテキストが、開始点の真下の次の行上に置かれるようにします。

There must be either a focused view or an active graphics context when you call this method. あなたがこのメソッドを呼び出す場合、フォーカスされたビューまたはある実際のグラフィックコンテキストのどちらかがなければなりません。

See Also 参照

Drawing the String 文字列を描画する

Related Documentation 関連文書