Explicit notification on geometry change

Build 1501 on 14/Nov/2017  This topic last edited on: 16/Mar/2016, at 14:30

An explicit notification on geometry change, as it existed in GN3, is discarded in GN4. Anyway, you can add it in the custom scripts.

1.Open the CustomArticle.vb and locate the Public Class CustomTxtDesignerAddIn.

2.Add Implements ITedEvent under Inherits TxtDesignerAddIn.

3.Then, add the following, before End Class:

Public Overrides Sub OnAlertTxtGeometry() Implements ITedEvent.OnAlertTxtGeometry

   ArticleRefreshGeometry()

   MsgBox("Geometry updated!")

End Sub