ITextDocument::GetStoryCount method (tom.h)
Gets the count of stories in this document.
Syntax
HRESULT GetStoryCount(
long *pCount
);
Parameters
pCount
Type: LONG*
The number of stories in the document.
Return value
Type: HRESULT
If the method succeeds, it returns S_OK. If the method fails, it returns the following COM error code. For more information about COM error codes, see Error Handling in COM.
Return code | Description |
---|---|
|
Invalid argument. |
Remarks
Rich edit controls have only one story and do not implement the ITextDocument::GetStoryRanges method. To avoid getting an error when there is only one story, use ITextDocument::GetStoryCount to check the story count. If the story count is greater than one, then call ITextDocument::GetStoryRanges.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | tom.h |
DLL | Msftedit.dll |
See also
Conceptual
Reference