ToolStripTextBox::Modified Property
.NET Framework (current version)
Gets or sets a value that indicates that the ToolStripTextBox control has been modified by the user since the control was created or its contents were last set.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property bool Modified { bool get(); void set(bool value); }
Property Value
Type: System::Booleantrue if the control's contents have been modified; otherwise, false.
You can use this property to determine if the user has modified the contents of the ToolStripTextBox control. You can also set this property in code to indicate that changes were made to the ToolStripTextBox control by the application. This property can be used by validation and data-saving methods to determine if changes were made in a ToolStripTextBox control so the changed contents can be validated or saved.
.NET Framework
Available since 2.0
Available since 2.0
Show: