ITextStrings::Add method (tom.h)

Adds a string to the end of the collection.

Syntax

HRESULT Add(
  [in] BSTR bstr
);

Parameters

[in] bstr

Type: BSTR

The string. The value can be NULL for a null string.

Return value

Type: HRESULT

If the method succeeds, it returns S_OK. If the method fails, it returns one of the following COM error codes. For more information about COM error codes, see Error Handling in COM.

Return code Description
E_INVALIDARG
Invalid argument.
E_OUTOFMEMORY
Insufficient memory.

Remarks

Adding an item to the end of a collection is like pushing a parameter onto the stack.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Target Platform Windows
Header tom.h
DLL Msftedit.dll

See also

ITextStrings