StrokeCollection.ContainsPropertyData(Guid) Method

Definition

Returns whether the specified custom property identifier is in the StrokeCollection.

C#
public bool ContainsPropertyData(Guid propertyDataId);

Parameters

propertyDataId
Guid

The Guid to locate in the StrokeCollection.

Returns

true if the specified custom property identifier is in the StrokeCollection; otherwise, false.

Examples

The following example demonstrates how to check for custom property in a StrokeCollection. If a custom property has been associated with timestamp, the example gets that custom property and shows when the StrokeCollection was saved. This example assumes that there is an InkCanvas called inkCanvas1.

C#
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.");
    }
}

Applies to

Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10