Function 関数

NSPointFromString(_:)

Returns a point from a text-based representation. テキストに基づく表現から、ある点を返します。

Declaration 宣言

func NSPointFromString(_ aString: String) -> NSPoint

Parameters パラメータ

aString

A string of the form “{x, y}”. 形式 “{x, y}” の文字列。

Return Value 戻り値

If aString is of the form “{x, y}” an NSPoint structure that uses x and y as the x and y coordinates, in that order. aStringが形式 “{x, y}” であるならばNSPoint構造体、それは x と y を x および y 座標として、その順番で使います。

If aString only contains a single number, it is used as the x coordinate. If aString does not contain any numbers, returns an NSPoint object whose x and y coordinates are both 0. aStringがただ1つだけの数を含むならば、それが x 座標として使われます。aStringが全く数を含まないならば、x と y 座標が両方とも0であるNSPointオブジェクトを返します。

See Also 参照

Managing Points ポイントの管理