#include "ltivw.h"
L_LTIVW_API L_INT L_DispContainerGetFullExploded(hCon, pbExploded, uFlags);
HDISPCONTAINER hCon; |
handle to the container |
L_BOOL * pbExploded; |
pointer to a variable to be updated |
L_UINT uFlags; |
reserved for future use |
Returns a value that indicates whether a cell is exploded or not.
Parameter | Description | |
hCon | Handle to the container. | |
pbExploded | Pointer to a variable to be updated with the current explode status. Possible values are: | |
Value | Meaning | |
TRUE | The cell is exploded. | |
FALSE | The cell is not exploded. | |
uFlags | Reserved for future. Must be 0. |
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 explode a cell, call to L_DispContainerSetFullExploded function.
Required DLLs and Libraries
LTIVW For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
This function toggle whether the full explode feature is on or off.
L_INT L_DispContainerGetFullExplodedkExample(HDISPCONTAINER hCon)
{
L_BOOL bExploded;
L_DispContainerGetFullExploded(hCon, &bExploded, 0);
L_DispContainerSetFullExploded(hCon, !bExploded, 0);
MessageBox(NULL, TEXT("The full explode mode is now On, please double click on any click to preform the full explode"), TEXT("Status"), MB_OK);
return SUCCESS;
}