CharacterMetricsDictionary.Remove Method

Definition

Removes the element from CharacterMetricsDictionary based on the specified character code.

Overloads

Remove(KeyValuePair<Int32,CharacterMetrics>)

Removes the element from CharacterMetricsDictionary based on the specified key/value pair.

Remove(Int32)

Removes the element from CharacterMetricsDictionary based on the specified character code.

Remove(KeyValuePair<Int32,CharacterMetrics>)

Important

This API is not CLS-compliant.

Removes the element from CharacterMetricsDictionary based on the specified key/value pair.

public:
 virtual bool Remove(System::Collections::Generic::KeyValuePair<int, System::Windows::Media::CharacterMetrics ^> item);
[System.CLSCompliant(false)]
public bool Remove (System.Collections.Generic.KeyValuePair<int,System.Windows.Media.CharacterMetrics> item);
[<System.CLSCompliant(false)>]
abstract member Remove : System.Collections.Generic.KeyValuePair<int, System.Windows.Media.CharacterMetrics> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<int, System.Windows.Media.CharacterMetrics> -> bool
Public Function Remove (item As KeyValuePair(Of Integer, CharacterMetrics)) As Boolean

Parameters

item
KeyValuePair<Int32,CharacterMetrics>

The key/value pair representing the character code and associated CharacterMetrics value.

Returns

true if the CharacterMetrics item was successfully deleted; otherwise false.

Implements

Attributes

Applies to

Remove(Int32)

Removes the element from CharacterMetricsDictionary based on the specified character code.

public:
 virtual bool Remove(int key);
public bool Remove (int key);
abstract member Remove : int -> bool
override this.Remove : int -> bool
Public Function Remove (key As Integer) As Boolean

Parameters

key
Int32

A value of type Int32 representing the character code.

Returns

true if the CharacterMetrics item was successfully deleted; otherwise false.

Implements

Applies to