CharacterMetricsDictionary.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
根据指定的字符代码从 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
参数
表示字符代码和关联的 CharacterMetrics 值的键/值对。
返回
如果成功删除 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
参数
返回
如果成功删除 CharacterMetrics 项,则为 true
;否则为 false
。