Fired when the report changes (e.g. fields are moved/resized or copied with the mouse).

Namespace:  C1.Win.C1ReportDesigner
Assembly:  C1.Win.C1ReportDesigner.2 (in C1.Win.C1ReportDesigner.2.dll)

Syntax

C#
public event EventHandler ValuesChanged
Visual Basic
Public Event ValuesChanged As EventHandler

Examples

The code below shows how a typical application would handle the ValuesChanged event to refresh a PropertyGrid so it displays the new values, and to mark the current report definition document as dirty (to indicate the document has changed and needs to be saved).
Copy CodeC#
private void _designer_ValuesChanged(object sender, System.EventArgs e)
{
    _dirty = true;
    _propGrid.Refresh();
    _designer.CreateFieldInfo = null;
    UpdateUI();
}

See Also