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