Rect.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.
Belirtilen dize gösteriminden yeni bir dikdörtgen oluşturur.
public:
static System::Windows::Rect Parse(System::String ^ source);
public static System.Windows.Rect Parse (string source);
static member Parse : string -> System.Windows.Rect
Public Shared Function Parse (source As String) As Rect
Parametreler
- source
- String
Dikdörtgenin "x, y, width, height" biçimindeki dize gösterimi.
Döndürülenler
Elde edilen dikdörtgen.
Örnekler
Aşağıdaki örnekte, dikdörtgenin ParseRect dize gösterimini bir yapıya dönüştürmek için yönteminin nasıl kullanılacağı gösterilmektedir.
private Rect parseExample()
{
// Converts a string representation of a Rect into a Rect structure
// using the Parse static method.
Rect resultRect = Rect.Parse("10,5, 200,50");
return resultRect;
}
Private Function parseExample() As Rect
' Converts a string representation of a Rect into a Rect structure
' using the Parse static method.
Dim resultRect As Rect = Rect.Parse("10,5, 200,50")
Return resultRect
End Function
Şunlara uygulanır
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.