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
不是由兩個以逗號或空格分隔的雙精度浮點數值所組成。
範例
下列範例示範如何使用 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