14 references to ExtendedProperties
PresentationCore (14)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (3)
2163
if (stroke.
ExtendedProperties
.Count > 0)
2166
for (i = 0; i < stroke.
ExtendedProperties
.Count; i++)
2168
guidList.Add(stroke.
ExtendedProperties
[i].Id);
MS\Internal\Ink\InkSerializedFormat\StrokeSerializer.cs (5)
669
if (stroke.
ExtendedProperties
.Count > 0)
670
cbWrite += ExtendedPropertySerializer.EncodeAsISF(stroke.
ExtendedProperties
, stream, guidList, compressionAlgorithm, false);
760
if (stroke.
ExtendedProperties
.Count > 0)
766
for (int x = 0; x < stroke.
ExtendedProperties
.Count; x++)
768
tag = guidList.FindTag(stroke.
ExtendedProperties
[(int)x].Id, false);
System\Windows\Ink\Stroke.cs (6)
394
this.
ExtendedProperties
[propertyDataId] = propertyData;
398
this.
ExtendedProperties
.Add(propertyDataId, propertyData);
413
this.
ExtendedProperties
.Remove(propertyDataId);
424
return this.
ExtendedProperties
[propertyDataId];
432
return this.
ExtendedProperties
.GetGuidArray();
441
return this.
ExtendedProperties
.Contains(propertyDataId);