Reflection
IsModified Property
Example 


Gets a value indicating whether the field has been modified.
Syntax
'Declaration
 
Public ReadOnly Property IsModified As Boolean
'Usage
 
Dim instance As HostField
Dim value As Boolean
 
value = instance.IsModified
public bool IsModified {get;}
Remarks
It returns true if the field has been modified.
Example
HostField host;
bool IfFieldModified = host.IsModified;
See Also