StrokeCollection.ContainsPropertyData(Guid) Methode

Definition

Gibt zurück, ob der angegebene benutzerdefinierte Eigenschaftenbezeichner in der StrokeCollection enthalten ist.

public:
 bool ContainsPropertyData(Guid propertyDataId);
public bool ContainsPropertyData (Guid propertyDataId);
member this.ContainsPropertyData : Guid -> bool
Public Function ContainsPropertyData (propertyDataId As Guid) As Boolean

Parameter

propertyDataId
Guid

Das Guid, das in der StrokeCollection gesucht werden soll.

Gibt zurück

true, wenn die angegebene benutzerdefinierte Eigenschaft in der StrokeCollection enthalten ist, andernfalls false.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie sie in einer StrokeCollectionnach benutzerdefinierter Eigenschaft suchen. Wenn eine benutzerdefinierte Eigenschaft zugeordnet timestampwurde, ruft das Beispiel diese benutzerdefinierte Eigenschaft ab und zeigt an, wann gespeichert StrokeCollection wurde. In diesem Beispiel wird davon ausgegangen, dass es einen InkCanvas namens inkCanvas1gibt.

Guid timestamp = new Guid("12345678-9012-3456-7890-123456789012");

// Add a timestamp to the StrokeCollection.
private void AddTimestamp_Click(object sender, RoutedEventArgs e)
{

    inkCanvas1.Strokes.AddPropertyData(timestamp, DateTime.Now);
}

// Get the timestamp of the StrokeCollection.
private void GetTimestamp_Click(object sender, RoutedEventArgs e)
{

    if (inkCanvas1.Strokes.ContainsPropertyData(timestamp))
    {
        object date = inkCanvas1.Strokes.GetPropertyData(timestamp);

        if (date is DateTime)
        {
            MessageBox.Show("This StrokeCollection's timestamp is " +
                ((DateTime)date).ToString());
        }
    }
    else
    {
        MessageBox.Show(
            "The StrokeCollection does not have a timestamp.");
    }
}
Private timestamp As New Guid("12345678-9012-3456-7890-123456789012")

' Add a timestamp to the StrokeCollection.
Private Sub AddTimestamp_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)

    inkCanvas1.Strokes.AddPropertyData(timestamp, DateTime.Now)

End Sub

' Get the timestamp of the StrokeCollection.
Private Sub GetTimestamp_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)

    If inkCanvas1.Strokes.ContainsPropertyData(timestamp) Then

        Dim savedDate As Object = inkCanvas1.Strokes.GetPropertyData(timestamp)

        If TypeOf savedDate Is DateTime Then
            MessageBox.Show("This StrokeCollection's timestamp is " & _
                CType(savedDate, DateTime).ToString())
        End If
    Else
        MessageBox.Show("The StrokeCollection does not have a timestamp.")
    End If

End Sub

Gilt für: