8 references to GetValue
PresentationCore (8)
System\Windows\Media\CharacterMetricsDictionary.cs (6)
52value = GetValue(key); 114return item.Value != null && item.Value.Equals(GetValue(item.Key)); 234return GetValue(key) != null; 250get { return GetValue(key); } 281return (key is int) ? GetValue((int)key) : null; 307return 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]);