|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function ExternalEditorShow (
nIdDsp as Int32,
bShow as Boolean,
hWndParent as IntPtr,
leftPos as Int32,
topPos as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes ExternalEditorShow (
Int32 nIdDsp,
bool bShow,
IntPtr hWndParent,
Int32 leftPos,
Int32 topPos
);
|
|
[C++]
public: enumErrorCodes ExternalEditorShow (
Int32 nIdDsp,
bool bShow,
IntPtr hWndParent,
Int32 leftPos,
Int32 topPos
);
|
|
Parameter
|
Description
| ||||||
|
|
| ||||||
|
nIdDsp
|
Unique identifier of the custom DSP
| ||||||
|
bShow
|
Show/hide flag..
Supported values are the following:
| ||||||
|
hWndParent
|
Handle of the window (HWND) that will be parent of the editor's window.
| ||||||
|
leftPos
|
Left position, respect to the container window client area, expressed in pixels
| ||||||
|
topPos
|
Top position, respect to the container window client area, expressed in pixels
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
>= 0
|
A custom return value: you can define your own set of return values in order to let the container application know the result of the custom command
|