8 references to GetValue
PresentationCore (8)
Core\CSharp\System\Windows\Media\CharacterMetricsDictionary.cs (6)
66value = GetValue(key); 128return item.Value != null && item.Value.Equals(GetValue(item.Key)); 252return GetValue(key) != null; 268get { return GetValue(key); } 299return (key is int) ? GetValue((int)key) : null; 325return key is int && GetValue((int)key) != null;
Core\CSharp\System\Windows\Media\FamilyTypeface.cs (2)
300return _characterMetrics != null && _characterMetrics.GetValue(unicodeScalar) != null; 319CharacterMetrics metrics = _characterMetrics.GetValue(characterString[i]);