8 references to GetValue
PresentationCore (8)
System\Windows\Media\CharacterMetricsDictionary.cs (6)
49value = GetValue(key); 108return item.Value != null && item.Value.Equals(GetValue(item.Key)); 228return GetValue(key) != null; 244get { return GetValue(key); } 275return (key is int) ? GetValue((int)key) : null; 301return key is int && GetValue((int)key) != null;
System\Windows\Media\FamilyTypeface.cs (2)
281return _characterMetrics != null && _characterMetrics.GetValue(unicodeScalar) != null; 296CharacterMetrics metrics = _characterMetrics.GetValue(characterString[i]);