Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Retrieves a value that indicates whether the collection is dirty.
Syntax
Visual Basic Overridable Protected Property Dirty As bool C# protected virtual bool Dirty { get; set; } Managed C++ protected: __property virtual bool get_Dirty();
protected: __property virtual void set_Dirty(bool);JScript protected function get Dirty() : bool;
protected function set Dirty(bool);
Possible Values
bDirty One of the following values: falseCollection is not tracking its view state changes.trueCollection is tracking its view state changes.The property is read/write. The property has no default value.
Remarks
The collection needs to be tracking view state changes in order for this value to be anything other than false.
Applies To
CssCollection
See Also