SOLIDWORKS Property Manager Page data changed events handling
xCAD framework provides event handlers for the data changes in the controls. Use this handlers to update preview or any other state which depends on the values in the controls.
Post data changed event
Xarial.XCad.SolidWorks.UI.PropertyPage.ISwPropertyManagerPage
m_Page.DataChanged += OnDataChanged;
private void OnDataChanged() { var text = m_Data.Text; //handle the data changing, e.g. update preview }