StreamingTextActionEntity.TextChanged Event

Definition

Raised when the text content of a StreamingTextActionEntity has changed.

// Register
event_token TextChanged(TypedEventHandler<StreamingTextActionEntity, StreamingTextActionEntityTextChangedArgs const&> const& handler) const;

// Revoke with event_token
void TextChanged(event_token const* cookie) const;

// Revoke with event_revoker
StreamingTextActionEntity::TextChanged_revoker TextChanged(auto_revoke_t, TypedEventHandler<StreamingTextActionEntity, StreamingTextActionEntityTextChangedArgs const&> const& handler) const;
public event TypedEventHandler<StreamingTextActionEntity,StreamingTextActionEntityTextChangedArgs> TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
streamingTextActionEntity.addEventListener("textchanged", onTextChanged);
streamingTextActionEntity.removeEventListener("textchanged", onTextChanged);
- or -
streamingTextActionEntity.ontextchanged = onTextChanged;
Public Custom Event TextChanged As TypedEventHandler(Of StreamingTextActionEntity, StreamingTextActionEntityTextChangedArgs) 

Event Type

Applies to