14 references to ExtendedProperties
PresentationCore (14)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (3)
2238
if (stroke.
ExtendedProperties
.Count > 0)
2241
for (i = 0; i < stroke.
ExtendedProperties
.Count; i++)
2243
guidList.Add(stroke.
ExtendedProperties
[i].Id);
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\StrokeSerializer.cs (5)
716
if (stroke.
ExtendedProperties
.Count > 0)
717
cbWrite += ExtendedPropertySerializer.EncodeAsISF(stroke.
ExtendedProperties
, stream, guidList, compressionAlgorithm, false);
807
if (stroke.
ExtendedProperties
.Count > 0)
813
for (int x = 0; x < stroke.
ExtendedProperties
.Count; x++)
815
tag = guidList.FindTag(stroke.
ExtendedProperties
[(int)x].Id, false);
Core\CSharp\System\Windows\Ink\Stroke.cs (6)
418
this.
ExtendedProperties
[propertyDataId] = propertyData;
422
this.
ExtendedProperties
.Add(propertyDataId, propertyData);
437
this.
ExtendedProperties
.Remove(propertyDataId);
448
return this.
ExtendedProperties
[propertyDataId];
456
return this.
ExtendedProperties
.GetGuidArray();
465
return this.
ExtendedProperties
.Contains(propertyDataId);