StringAnimationUsingKeyFrames.FreezeCore(Boolean) メソッド
定義
StringAnimationUsingKeyFrames オブジェクトのこのインスタンスを変更不可能にします。または、変更不可能にできるかどうかを判断します。Makes this instance of StringAnimationUsingKeyFrames object unmodifiable or determines whether it can be made unmodifiable.
protected:
override bool FreezeCore(bool isChecking);
protected override bool FreezeCore (bool isChecking);
override this.FreezeCore : bool -> bool
Protected Overrides Function FreezeCore (isChecking As Boolean) As Boolean
パラメーター
- isChecking
- Boolean
このインスタンスが固定可能かどうかを確認するには、true
。このインスタンスを固定するには false
。true
to check if this instance can be frozen; false
to freeze this instance.
戻り値
isChecking
が true の場合、このインスタンスを読み取り専用にできるなら、このメソッドは true
を返します。読み取り専用にできないなら false
を返します。If isChecking
is true, this method returns true
if this instance can be made read-only, or false
if it cannot be made read-only. isChecking
が false の場合、このインスタンスが現在読み取り専用であるなら、このメソッドは true
を返します。このオブジェクトの固定された状態を変更し始めたことの副作用によって、これを読み取り専用にできない場合は false
を返します。If isChecking
is false, this method returns true
if this instance is now read-only, or false
if it cannot be made read-only, with the side effect of having begun to change the frozen status of this object.