Print3DTask.Submitting 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于 3D 列印套件已提交至 3D 印表機時。
// Register
event_token Submitting(TypedEventHandler<Print3DTask, IInspectable const&> const& handler) const;
// Revoke with event_token
void Submitting(event_token const* cookie) const;
// Revoke with event_revoker
Print3DTask::Submitting_revoker Submitting(auto_revoke_t, TypedEventHandler<Print3DTask, IInspectable const&> const& handler) const;
public event TypedEventHandler<Print3DTask,object> Submitting;
function onSubmitting(eventArgs) { /* Your code */ }
print3DTask.addEventListener("submitting", onSubmitting);
print3DTask.removeEventListener("submitting", onSubmitting);
- or -
print3DTask.onsubmitting = onSubmitting;
Public Custom Event Submitting As TypedEventHandler(Of Print3DTask, Object)
事件類型
TypedEventHandler<Print3DTask,IInspectable>