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