6 instantiations of ExtendedProperty
PresentationCore (6)
MS\Internal\Ink\ExtendedProperty.cs (2)
186
return new
ExtendedProperty
(guid, _value);
199
return new
ExtendedProperty
(guid, newArray);
MS\Internal\Ink\ExtendedPropertyCollection.cs (3)
154
ExtendedProperty extendedProperty = new
ExtendedProperty
(id, value);
251
new
ExtendedProperty
(currentProperty.Id, oldValue), //old prop
264
ExtendedProperty attributeToAdd = new
ExtendedProperty
(attributeId, value);
System\Windows\Ink\DrawingAttributes.cs (1)
798
new
ExtendedProperty
( args.OldProperty.Id,
27 references to ExtendedProperty
PresentationCore (27)
MS\Internal\Ink\ExtendedProperty.cs (7)
45
ExtendedProperty
that = (
ExtendedProperty
)obj;
87
public static bool operator ==(
ExtendedProperty
first,
ExtendedProperty
second)
105
public static bool operator !=(
ExtendedProperty
first,
ExtendedProperty
second)
168
internal
ExtendedProperty
Clone()
MS\Internal\Ink\ExtendedPropertyCollection.cs (10)
154
ExtendedProperty
extendedProperty = new ExtendedProperty(id, value);
172
ExtendedProperty
propertyToRemove = GetExtendedPropertyById(id);
226
ExtendedProperty
ep = GetExtendedPropertyById(attributeId);
238
ExtendedProperty
currentProperty = _extendedProperties[i];
264
ExtendedProperty
attributeToAdd = new ExtendedProperty(attributeId, value);
278
internal
ExtendedProperty
this[int index]
308
private void Add(
ExtendedProperty
extendedProperty)
327
private
ExtendedProperty
GetExtendedPropertyById(Guid id)
357
private List<
ExtendedProperty
> _extendedProperties = new List<
ExtendedProperty
>();
MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (3)
44
internal static void EncodeToStream(
ExtendedProperty
attribute, Stream stream)
730
ExtendedProperty
prop = attributes[i];
758
ExtendedProperty
attribute = attributes[x];
System\Windows\Ink\DrawingAttributes.cs (1)
797
ExtendedProperty
newProperty =
System\Windows\Ink\Events.cs (6)
150
private
ExtendedProperty
_oldProperty;
151
private
ExtendedProperty
_newProperty;
154
internal ExtendedPropertiesChangedEventArgs(
ExtendedProperty
oldProperty,
155
ExtendedProperty
newProperty)
169
internal
ExtendedProperty
OldProperty
178
internal
ExtendedProperty
NewProperty