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