Function 関数

NSRectFromString(_:)

Returns a rectangle from a text-based representation. テキストに基づく表現から、矩形を返します。

Declaration 宣言

func NSRectFromString(_ aString: String) -> NSRect

Discussion 議論

Scans aString for four numbers which are used as the x and y coordinates and the width and height, in that order, to create an NSPoint object. If aString does not contain four numbers, those numbers that were scanned are used, and 0 is used for the remaining values. If aString does not contain any numbers, this function returns an NSRect object with a rectangle whose origin is (0, 0) and width and height are both 0. aStringを走査してxとy座標そして幅と高さとして使われる4つの数字を、その順序で探して、NSPointオブジェクトを作成します。aStringが4つの数字を含まないならば、走査されたそれらの数が使われます、そして0が残りの値のために使われます。aStringが何ら数字を含まないならば、この関数はある矩形をもつNSRectオブジェクトを返し、それの起点は (0, 0) そして幅と高さは両方とも0です。

See Also 参照

Managing Rectangles 矩形を管理する