Dirty Property
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: false
Collection is not tracking its view state changes.true
Collection 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