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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.