ITextStoreACP::InsertTextAtSelection method (textstor.h)
The ITextStoreACP::InsertTextAtSelection method inserts text at the insertion point or selection. A caller must have a read/write lock on the document before inserting text.
Syntax
HRESULT InsertTextAtSelection(
[in] DWORD dwFlags,
[in] const WCHAR *pchText,
[in] ULONG cch,
[out] LONG *pacpStart,
[out] LONG *pacpEnd,
[out] TS_TEXTCHANGE *pChange
);
Parameters
[in] dwFlags
Specifies whether the pacpStart and pacpEnd parameters and the TS_TEXTCHANGE structure contain the results of the text insertion.
The TF_IAS_NOQUERY and TF_IAS_QUERYONLY flags cannot be combined.
[in] pchText
Pointer to the string to insert in the document. The string can be NULL terminated.
[in] cch
Specifies the text length.
[out] pacpStart
Pointer to the starting application character position where the text insertion occurs.
[out] pacpEnd
Pointer to the ending application character position where the text insertion occurs. This parameter value is the same as the value of the pacpStart parameter for an insertion point.
[out] pChange
Pointer to a TS_TEXTCHANGE structure with the following members.
Return value
This method can return one of these values.
Value | Description |
---|---|
|
The method was successful. |
|
The caller does not have a lock on the document. |
|
The pchText parameter is invalid. |
Remarks
The values of the pacpStart and the pacpEnd parameters depend upon how the client application inserts text into a document. For example, if the application sets the cursor at the start of the inserted text after text insertion, then the value for the pacpStart and pacpEnd parameters is the same as the acpStart member of the TS_TEXTCHANGE structure.
Applications should not call the ITextStoreACPSink::OnTextChange method in response to this method.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | textstor.h |
DLL | Msctf.dll |
Redistributable | TSF 1.0 on Windows 2000 Professional |