SimpleEditorView.CreatePaneWindow Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates the window.
public:
abstract int CreatePaneWindow(IntPtr hwndParent, int x, int y, int cx, int cy, [Runtime::InteropServices::Out] IntPtr % hwnd);
public abstract int CreatePaneWindow (IntPtr hwndParent, int x, int y, int cx, int cy, out IntPtr hwnd);
abstract member CreatePaneWindow : nativeint * int * int * int * int * nativeint -> int
Public MustOverride Function CreatePaneWindow (hwndParent As IntPtr, x As Integer, y As Integer, cx As Integer, cy As Integer, ByRef hwnd As IntPtr) As Integer
Parameters
- hwndParent
-
IntPtr
nativeint
A pointer to the parent window.
- x
- Int32
The absolute x
ordinate.
- y
- Int32
The absolute y
ordinate.
- cx
- Int32
The width of the window.
- cy
- Int32
The height of the window.
- hwnd
-
IntPtr
nativeint
[out] A pointer to the new window pane.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
This method should be implemented by derived classes.