Public Attributes | |
| DWORD | dwExStyle |
| DWORD | dwStyle |
| HINSTANCE | hInstance |
| HMENU | hMenu |
| HWND | hWndParent |
| LPVOID | lpParam |
| int | nHeight |
| int | nWidth |
| bool | unicode |
| int | x |
| int | y |
CreateEditorArgs is a subset of arguments for CreateWindowEx() which is called by Fe_CreateEditor() internally.
unicode field specifies if to create Unicode or ANSI editor window:
... HWND editorHandle = Fe_CreateEditor(args); if(editorHandle) { ASSERT(IsWindowUnicode(editorHandle) == args.unicode); }
IsWindowUnicode: http://msdn.microsoft.com/en-us/library/ms633529.aspx
| HINSTANCE fe::CreateEditorArgs::hInstance |