CharacterMetricsDictionary.TryGetValue(Int32, CharacterMetrics) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the CharacterMetrics value in the dictionary for a specified character code value.
public:
virtual bool TryGetValue(int key, [Runtime::InteropServices::Out] System::Windows::Media::CharacterMetrics ^ % value);
public bool TryGetValue (int key, out System.Windows.Media.CharacterMetrics value);
abstract member TryGetValue : int * CharacterMetrics -> bool
override this.TryGetValue : int * CharacterMetrics -> bool
Public Function TryGetValue (key As Integer, ByRef value As CharacterMetrics) As Boolean
Parameters
- value
- CharacterMetrics
A value of type CharacterMetrics.
Returns
true
if the dictionary contains an entry for key
; otherwise false
.
Remarks
If the return value is true
, value
contains a copy of the CharacterMetrics item that matches the key
value. If the return value is false
, value
is set to null
.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.