CharacterMetricsDictionary.Remove 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.
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
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
Returns
true
if the CharacterMetrics item was successfully deleted; otherwise false
.