InkToolbar.InkDrawingAttributesChanged 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 any InkDrawingAttributes are changed.
// Register
event_token InkDrawingAttributesChanged(TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;
// Revoke with event_token
void InkDrawingAttributesChanged(event_token const* cookie) const;
// Revoke with event_revoker
InkToolbar::InkDrawingAttributesChanged_revoker InkDrawingAttributesChanged(auto_revoke_t, TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;
public event TypedEventHandler<InkToolbar,object> InkDrawingAttributesChanged;
function onInkDrawingAttributesChanged(eventArgs) { /* Your code */ }
inkToolbar.addEventListener("inkdrawingattributeschanged", onInkDrawingAttributesChanged);
inkToolbar.removeEventListener("inkdrawingattributeschanged", onInkDrawingAttributesChanged);
- or -
inkToolbar.oninkdrawingattributeschanged = onInkDrawingAttributesChanged;
Public Custom Event InkDrawingAttributesChanged As TypedEventHandler(Of InkToolbar, Object)
Event Type
TypedEventHandler<InkToolbar,IInspectable>
Applies to
See also
- Pen and stylus interactions
- Add an InkToolbar to a Universal Windows Platform (UWP) app
- Get Started Tutorial: Support ink in your UWP app
- InkDrawingAttributes
- Simple ink sample (C#/C++)
- Complex ink sample (C++)
- Ink sample (JavaScript)
- Get Started Tutorial: Support ink in your UWP app
- Coloring book sample