Event of IFrameEvents
Called after text has been inserted or typed
Appplication.onTextInsert = function(pPos, strText, action) { };
==== Visual Basic Script ====
function onTextInsert(pPos, strText, action)
{
}
Appplication.onTextInsert = onTextInsert
==== C++ ====
HRESULT CFrameEvents::onTextInsert(ITextDocument* pDocument, IPosition* pPos, BSTR strText, eAction action) { }
===== See Also ===== IFrameEvents