共用方式為


ByteKeyFrameCollection.Contains(ByteKeyFrame) 方法

定義

指出集合是否包含指定的 ByteKeyFrame

public:
 bool Contains(System::Windows::Media::Animation::ByteKeyFrame ^ keyFrame);
public bool Contains (System.Windows.Media.Animation.ByteKeyFrame keyFrame);
member this.Contains : System.Windows.Media.Animation.ByteKeyFrame -> bool
Public Function Contains (keyFrame As ByteKeyFrame) As Boolean

參數

keyFrame
ByteKeyFrame

要位於集合中的主要畫面格。

傳回

Boolean

如果集合包含 keyFrame,則為 true,否則為 false

備註

這個方法會執行線性搜尋;因此,平均執行時間與 成正比 Count 。 也就是說,這個方法是 O (n) 作業,其中 nCount

這個方法會呼叫 Object.Equals 來判斷相等。

適用於

另請參閱