14 references to ExtendedProperties
PresentationCore (14)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (3)
2187
if (stroke.
ExtendedProperties
.Count > 0)
2190
for (i = 0; i < stroke.
ExtendedProperties
.Count; i++)
2192
guidList.Add(stroke.
ExtendedProperties
[i].Id);
MS\Internal\Ink\InkSerializedFormat\StrokeSerializer.cs (5)
677
if (stroke.
ExtendedProperties
.Count > 0)
678
cbWrite += ExtendedPropertySerializer.EncodeAsISF(stroke.
ExtendedProperties
, stream, guidList, compressionAlgorithm, false);
768
if (stroke.
ExtendedProperties
.Count > 0)
774
for (int x = 0; x < stroke.
ExtendedProperties
.Count; x++)
776
tag = guidList.FindTag(stroke.
ExtendedProperties
[(int)x].Id, false);
System\Windows\Ink\Stroke.cs (6)
410
this.
ExtendedProperties
[propertyDataId] = propertyData;
414
this.
ExtendedProperties
.Add(propertyDataId, propertyData);
429
this.
ExtendedProperties
.Remove(propertyDataId);
440
return this.
ExtendedProperties
[propertyDataId];
448
return this.
ExtendedProperties
.GetGuidArray();
457
return this.
ExtendedProperties
.Contains(propertyDataId);