14 references to ExtendedProperties
PresentationCore (14)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (3)
2164
if (stroke.
ExtendedProperties
.Count > 0)
2167
for (i = 0; i < stroke.
ExtendedProperties
.Count; i++)
2169
guidList.Add(stroke.
ExtendedProperties
[i].Id);
MS\Internal\Ink\InkSerializedFormat\StrokeSerializer.cs (5)
670
if (stroke.
ExtendedProperties
.Count > 0)
671
cbWrite += ExtendedPropertySerializer.EncodeAsISF(stroke.
ExtendedProperties
, stream, guidList, compressionAlgorithm, false);
761
if (stroke.
ExtendedProperties
.Count > 0)
767
for (int x = 0; x < stroke.
ExtendedProperties
.Count; x++)
769
tag = guidList.FindTag(stroke.
ExtendedProperties
[(int)x].Id, false);
System\Windows\Ink\Stroke.cs (6)
395
this.
ExtendedProperties
[propertyDataId] = propertyData;
399
this.
ExtendedProperties
.Add(propertyDataId, propertyData);
414
this.
ExtendedProperties
.Remove(propertyDataId);
425
return this.
ExtendedProperties
[propertyDataId];
433
return this.
ExtendedProperties
.GetGuidArray();
442
return this.
ExtendedProperties
.Contains(propertyDataId);