Point.Parse(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
static System::Windows::Point Parse(System::String ^ source);
public static System.Windows.Point Parse (string source);
static member Parse : string -> System.Windows.Point
Public Shared Function Parse (source As String) As Point
パラメーター
- source
- String
ポイントの文字列表現。
戻り値
等価の Point 構造体。
例外
source
がコンマまたはスペースで区切られた 2 つの Double 値で構成されていません。
例
次の例は、このメソッドを使用 Parse してポイントの表現を String 構造体に変換する方法を Point 示しています。
private Point parseExample()
{
// Converts a string representation of a point into a Point structure
// using the Parse static method.
// pointResult is equal to (1,3).
Point pointResult = Point.Parse("1,3");
return pointResult;
}
Private Function parseExample() As Point
' Converts a string representation of a point into a Point structure
' using the Parse static method.
' pointResult is equal to (1,3).
Dim pointResult As Point = Point.Parse("1,3")
Return pointResult
End Function