Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / GroupBase Class / DataRowsChanged Event


In This Topic
    DataRowsChanged Event (GroupBase)
    In This Topic
    Raised when modifications are made to the content of a cell in a data row and when a data row is added or removed from the group.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Raised when modifications are made to the content of a cell in a data row and when a data row is added or removed from the group.")>
    <CategoryAttribute("Data")>
    Public Event DataRowsChanged As EventHandler
    'Usage
     
    Dim instance As GroupBase
    Dim handler As EventHandler
     
    AddHandler instance.DataRowsChanged, handler
    [Description("Raised when modifications are made to the content of a cell in a data row and when a data row is added or removed from the group.")]
    [Category("Data")]
    public event EventHandler DataRowsChanged
    Remarks

    Modifications made to a DataRow between calls to its BeginEdit and EndEdit methods, will not cause the DataRowsChanged events to be raised until the EndEdit or CancelEdit methods are called.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also