StrokeCollection.AddPropertyData(Guid, Object) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Dodaje właściwość niestandardową do obiektu StrokeCollection.
public:
void AddPropertyData(Guid propertyDataId, System::Object ^ propertyData);
public void AddPropertyData (Guid propertyDataId, object propertyData);
member this.AddPropertyData : Guid * obj -> unit
Public Sub AddPropertyData (propertyDataId As Guid, propertyData As Object)
Parametry
- propertyData
- Object
Wartość właściwości niestandardowej.
propertyData
Musi być typu Char, , ByteUInt16Int64UInt64UInt32DateTimeDecimalInt32Int16DoubleBooleanSingleStringlub tablicą tych typów danych, z wyjątkiem String, który nie jest dozwolony.
Wyjątki
propertyDataId
jest pustym Guidelementem .
-lub-
propertyData
nie jest jednym z dozwolonych typów danych wymienionych w Parameters
sekcji .
Przykłady
W poniższym przykładzie pokazano, jak dodawać i pobierać dane właściwości niestandardowych. Metoda AddTimeStamp_Click
używa AddPropertyData metody , aby dodać bieżący czas do klasy StrokeCollection. Metoda GetTimeStap_Click
używa GetPropertyData metody , aby pobrać znacznik czasu z klasy StrokeCollection. W tym przykładzie założono, że istnieje InkCanvas nazwa .inkCanvas1
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
Uwagi
Metoda AddPropertyData umożliwia dodawanie właściwości niestandardowych do obiektu StrokeCollection. Następnie możesz uwzględnić dodatkowe informacje za pomocą polecenia StrokeCollection.