Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / EditBase Class / IsModified Property


In This Topic
    IsModified Property
    In This Topic
    Gets or sets a value that indicates that the control has been modified by the user since the control was created or its contents were last set.
    Syntax
    'Declaration
     
    Public Property IsModified As Boolean
    'Usage
     
    Dim instance As EditBase
    Dim value As Boolean
     
    instance.IsModified = value
     
    value = instance.IsModified
    public bool IsModified {get; set;}

    Property Value

    true if modified by user; otherwise, false.
    The default is false.
    Remarks
    You can use this property to determine if the user has modified the contents of the control. You can also set this property in code to indicate that changes were made to the control by the application. This property can be used by validation and data-saving methods to determine if changes were made in a control so the changed contents can be validated or saved.
    See Also