Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The following are the methods of the CDocList Class, which wraps the operating system implementation of the DocList window type.
Constructs a CDocList object. |
|
Creates and initializes the list associated with the CDocList object. |
|
Deletes selected items. |
|
Disables updating of CDocList. |
|
Enables updating of CDocList. |
|
Gets current file filter selection, for example, for setting the current filter for a combo box. |
|
Gets a count of items. |
|
Gets the next item in CDocList. |
|
Selects the next .wav file. |
|
Selects the previous .wav file. |
|
Gets the number of items selected. |
|
Gets the path associated with the selected item. |
|
Receives infrared signals. |
|
Refreshes CDocList. |
|
Displays the Rename/Move dialog box for selected items. |
|
Selects the item associated with the path. |
|
Sends e-mail. |
|
Sends infrared signals. |
|
Indicates file filter has been changed; for example, user has changed settings in an Options dialog box. |
|
Sets a folder. |
|
Changes the state of an item in CDocList. |
|
Causes the item associated with the path to be selected during the next refresh. |
|
Selects an item by index. |
|
Sorts CDocList. |
|
Refreshes CDocList but does not restore the selection. |
CCeDocList class has become CDocList Class in MFC 8.0. The following is code from an MFC 3.0 application:
CCommandBar* pDocListCB = pDocList->GetCommandBar();
This code generates the following error:
MainFrm.cpp(115) : error C2039: 'GetCommandBar' : is not a member of 'CDocList'
In MFC 8.0, create an instance of CDocListCommandBar instead.