Stroke.PropertyDataChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the custom properties on a Stroke object changes.
public:
event System::Windows::Ink::PropertyDataChangedEventHandler ^ PropertyDataChanged;
public event System.Windows.Ink.PropertyDataChangedEventHandler PropertyDataChanged;
member this.PropertyDataChanged : System.Windows.Ink.PropertyDataChangedEventHandler
Public Custom Event PropertyDataChanged As PropertyDataChangedEventHandler
Public Event PropertyDataChanged As PropertyDataChangedEventHandler
Event Type
Examples
The following example demonstrates how to add a handler for this event.
// Handle PropertyDataChanged event on stroke
myNewStroke.PropertyDataChanged += new PropertyDataChangedEventHandler(myNewStroke_PropertyDataChanged);
' Handle PropertyDataChanged event on stroke
AddHandler myNewStroke.PropertyDataChanged, AddressOf myNewStroke_PropertyDataChanged
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.