Index

C/C++ Functions

txTextGetFilter

DT_ULONG txTextGetFilter(DT_TXDOC text_doc, DT_SWORD reserved)

Short Description: Get visibility filter

This txTextGetFilter function gets the visibility filter set by txTextSetFilter.

This is a convenience function. It has the same effect as the following code:

DT_PDDOC power_doc; txTextGetPowerDoc(text_doc, &power_doc);
pdDocGetFilter(power_doc, reserved);

Parameters

ParameterDescription

text_doc

Handle of the associated text document instance.

reserved

Reserved for future use. Must be set to 0.

Return Value

The value of the visibility filter. See txTextSetFilter for details.

Related Functions

txTextSetFilter

 

Index