Matrix.Parse(String) Methode

Definition

Konvertiert eine String-Darstellung einer Matrix in die entsprechende Matrix-Struktur.

public:
 static System::Windows::Media::Matrix Parse(System::String ^ source);
public static System.Windows.Media.Matrix Parse (string source);
static member Parse : string -> System.Windows.Media.Matrix
Public Shared Function Parse (source As String) As Matrix

Parameter

source
String

Die String-Darstellung der Matrix.

Gibt zurück

Matrix

Die entsprechende Matrix-Struktur.

Beispiele

Im folgenden Beispiel wird gezeigt, wie eine Zeichenfolgendarstellung einer Matrix in eine Matrix Struktur konvertiert wird.

private Matrix parseExample()
{
    
    Matrix result = Matrix.Parse("1, 2, 3, 4, 5, 6");
    
    // result is equal to (1,2,3,4,5,6).
    return result;
}

Gilt für