Version: 01.10.00 - last Update: Tuesday, October 13, 2009, 13:10:00
_EdGetEnv | _EdSetEnv | _EdProcList
Foxtools Editor Support Functions
_EDPROPERTIES
_EdProperties() Opens the Properties Dialog for the editor session passed in <nWHANDL>.
VFP Syntax
= _EdProperties(nWHAND)
Parameters
[in] nWHAND
Fox-window handle of the editor session in question. If nWHANDL is no valid editor-session handle, an error “API call caused an exception” (Error 2028) is raised.
Returns
VOID - no evaluable return value, coz always TRUE.
Remarks
Note: Calling this function passing an invalid editor session handle does not cause a General Protection Fault.
VFP Example(s)
Opening an editor session, invoking Edit Properties:
*\\ Open editor session nWHAND =_EDOPENFIL("TEST.TXT", 1) ? _EDPROPERTIES(m.nWHAND)