Vector.Parse(String) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Vektörün dize gösterimini eşdeğer Vector yapıya dönüştürür.
public:
static System::Windows::Vector Parse(System::String ^ source);
public static System.Windows.Vector Parse (string source);
static member Parse : string -> System.Windows.Vector
Public Shared Function Parse (source As String) As Vector
Parametreler
- source
- String
Vektörünün dize gösterimi.
Döndürülenler
Vector Eşdeğer yapı.
Örnekler
Aşağıdaki örnekte, bir vektörün dize gösterimini yapıya Vector dönüştürmek için bu yöntemin nasıl kullanılacağı gösterilmektedir.
private Vector parseExample()
{
// Convert string into a Vector structure.
// vectorResult is equal to (1,3)
Vector vectorResult = Vector.Parse("1,3");
return vectorResult;
}
Private Function parseExample() As Vector
' Convert string into a Vector structure.
' vectorResult is equal to (1,3)
Dim vectorResult As Vector = Vector.Parse("1,3")
Return vectorResult
End Function