TextDecorationCollection.TryRemove 方法

定义

从当前集合中删除 TextDecorations 的一个集合并返回得到的(新)集合。

public:
 bool TryRemove(System::Collections::Generic::IEnumerable<System::Windows::TextDecoration ^> ^ textDecorations, [Runtime::InteropServices::Out] System::Windows::TextDecorationCollection ^ % result);
public bool TryRemove (System.Collections.Generic.IEnumerable<System.Windows.TextDecoration> textDecorations, out System.Windows.TextDecorationCollection result);
member this.TryRemove : seq<System.Windows.TextDecoration> * TextDecorationCollection -> bool
Public Function TryRemove (textDecorations As IEnumerable(Of TextDecoration), ByRef result As TextDecorationCollection) As Boolean

参数

textDecorations
IEnumerable<TextDecoration>

要删除的集合。

result
TextDecorationCollection

包含结果的 Out 参数。 如果未从当前集合中删除任何元素,则 result 为与原始集合相同的新集合。

返回

如果从当前集合中删除了至少一个项,则为 true;否则为 false

注解

当前集合保持不变。 如果要移除的集合不是当前集合的子集,则不会删除任何元素。 如果源集合具有项的多个实例,则会删除该项的所有实例。

适用于