Share

acedLoadPartialMenu Function

C++

bool acedLoadPartialMenu(
    const wchar_t* pszMenuFile
);

File

aced.h

Description

Adds (loads) a partial menu to the current main menu.

Parameters

Parameters Description
pszMenuFile The menu filename. Can be provided with or without a path, though if provided without a path, it is expected that the file is located on the current support files search path. The method call is rejected if the string is null, empty, or "." .

Returns

True if successful; otherwise, false.

Possible errors: File can't be found or the menu group name in the partial menu is already loaded.

Previous Declaration

bool acedLoadPartialMenu(

const TCHAR* pszMenuFile

);

Was this information helpful?