Difference between revisions of "IAdeUICallbacks::FileOpenCompleted/zh"
(Created page with "IAdeUICallbacks::FileOpenCompleted") |
(Created page with "== 参 数 ==") |
||
Line 8: | Line 8: | ||
This callback gives a web-based application an opportunity to delete a temporary file, for example if the file had been uploaded by the user. | This callback gives a web-based application an opportunity to delete a temporary file, for example if the file had been uploaded by the user. | ||
− | == | + | == 参 数 == |
* «function»: the identifier of the build-in function that read the file, e.g., <code>"[[SpreadsheetOpen]]"</code>. | * «function»: the identifier of the build-in function that read the file, e.g., <code>"[[SpreadsheetOpen]]"</code>. |
Revision as of 02:10, 27 October 2015
ADE User Guide > ADE Server Class Reference > IAdeUICallbacks
void FileOpenCompleted([in] string function, [in] string fullFilePath)
When a function requests a filename from IAdeUICallbacks::GetFilename(), it calls this function after it is done with the file, for example after the file has been read.
This callback gives a web-based application an opportunity to delete a temporary file, for example if the file had been uploaded by the user.
参 数
- «function»: the identifier of the build-in function that read the file, e.g.,
"SpreadsheetOpen"
. - «fullFilePath»: the file read -- exactly the same value returned by IAdeUICallbacks::GetFilename().
Return value
None
Examples
See Also
- IAdeUICallbacks::GetFilename method
- SpreadsheetOpen, ReadTextFile, ReadExportFile, ReadImageFile functions
Comments
Enable comment auto-refresher