Stroke.AddPropertyData(Guid, Object) 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.
Nesnesine Stroke özel bir özellik ekler.
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)
Parametreler
- propertyDataId
- Guid
Özelliğin benzersiz tanımlayıcısı.
- propertyData
- Object
Özel özelliğin değeri.
propertyData
, , Byte, Int16, UInt16, Int32, UInt32, , , Int64, UInt64Single, DateTimeDoubleBooleanStringDecimal , veya türünde olmalıdırChar; ancak Stringbuna izin verilmez.
Özel durumlar
propertyData
bağımsız değişkeni, bölümünde listelenen Parameters
izin verilen veri türlerinden biri değildir.
Örnekler
Aşağıdaki örnekte bir nesneye özel özelliğin Stroke nasıl ekleneceği gösterilmektedir.
// Create a guid for the date/timestamp.
Guid dtGuid = new Guid("03457307-3475-3450-3035-640435034540");
DateTime now = DateTime.Now;
// Check whether the property is already saved
if (thisStroke.ContainsPropertyData(dtGuid))
{
// Check whether the existing property matches the current date/timestamp
DateTime oldDT = (DateTime)thisStroke.GetPropertyData(dtGuid);
if (oldDT != now)
{
// Update the current date and time
thisStroke.AddPropertyData(dtGuid, now);
}
}
' Create a guid for the date/timestamp.
Dim dtGuid As New Guid("03457307-3475-3450-3035-640435034540")
Dim now As DateTime = DateTime.Now
' Check whether the property is already saved
If thisStroke.ContainsPropertyData(dtGuid) Then
' Check whether the existing property matches the current date/timestamp
Dim oldDT As DateTime = CType(thisStroke.GetPropertyData(dtGuid), DateTime)
If oldDT <> now Then
' Update the current date and time
thisStroke.AddPropertyData(dtGuid, now)
End If
End If
Açıklamalar
Bu yöntem, içinde Strokeek bilgi depolamanız gerekiyorsa yararlıdır.