CharacterMetricsDictionary.TryGetValue(Int32, CharacterMetrics) Method

Definition

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

key
Int32

A value of type Int32.

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