Changed Event

       

Occurs when a property of the StdDataFormat object changes.

Syntax

object_Changed()

The object is an object expression that evaluates to an object in the Applies To list.

Remarks

To use the event, declare an object variable in the Declarations section, as type StdDataFormat, using the WithEvents keyword as shown below:

Option Explicit
Private WithEvents fmtMyFormat As StdDataFormat

Private Sub fmtMyFormat_Changed()
   ' Handle change event here.
End Sub