CharacterMetricsDictionary.Remove 方法

定义

根据指定的字符代码从 CharacterMetricsDictionary 中移除该元素。

重载

Remove(KeyValuePair<Int32,CharacterMetrics>)

根据指定的键/值对从 CharacterMetricsDictionary 中移除元素。

Remove(Int32)

根据指定的字符代码从 CharacterMetricsDictionary 中移除该元素。

Remove(KeyValuePair<Int32,CharacterMetrics>)

重要

此 API 不符合 CLS。

根据指定的键/值对从 CharacterMetricsDictionary 中移除元素。

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

参数

item
KeyValuePair<Int32,CharacterMetrics>

表示字符代码和关联的 CharacterMetrics 值的键/值对。

返回

Boolean

如果成功删除 CharacterMetrics 项,则为 true;否则为 false

实现

属性

适用于

Remove(Int32)

根据指定的字符代码从 CharacterMetricsDictionary 中移除该元素。

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

参数

key
Int32

一个表示字符代码的 Int32 类型的值。

返回

Boolean

如果成功删除 CharacterMetrics 项,则为 true;否则为 false

实现

适用于