C++
ACAD_PORT void acedRegisterNavDialogCallbackFunction( FileDiaCallbackFuncPtr funcPtr );
File
filedialogcallback.h
Description
This function adds the passed in function pointer to the list of functions to be called whenever Acad creates a CAcUiNavDialog. The functions that are registered will only be called for CAcUiNavDialogs created by Acad.exe and calls to acedGetFileNavDialog() or AcDbHostApplicationServices::selectFile(). The registered functions will be called after the dialog has been created and its data set, but just before the dialog is actually displayed. This allows the called functions to make changes or additions before the dialog's DoModal() method is called to activate it.
Parameters
| Parameters | Description |
|---|---|
| funcPtr | Input pointer to function to be called when CAcUiNavDialog is created. |