#include "ltivw.h"
L_LTIVW_API L_INT L_DispContainerSetFullExploded(hCon, bExploded, uFlags);
Explodes or un-explodes the specified cell.
Handle to the container.
Flag that indicates whether to explode the selected cell or not. Possible values are:
Value | Meaning |
---|---|
TRUE | Explode the selected cell. |
FALSE | Un-explode the selected cell. |
Reserved for future. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
1 | An error occurred. Refer to Return Codes. |
The exploded mode is when the cell layout is divided into multiple cells and sub-cells, and the user wants to temporarily view the selected cell / sub-cell and makes it occupy the whole display area. This can be achieved by either using this property, or by simply double clicking any of the visible sub-cells.
To test a cell whether is exploded or not, call to L_DispContainerGetFullExploded function.
Required DLLs and Libraries
For an example, refer to L_DispContainerGetFullExploded.