CFileDialog::GetIFileDialogCustomize
擷取指定之的指標。 CFileDialog內使用 COM 物件。
IFileDialogCustomize* GetIFileDialogCustomize();
傳回值
in 內部 COM 物件的指標 CFileDialog的。 您必須自行適當地釋放這個指標。
備註
這個函式只能在具有 bVistaStyle 設為 true之物件的 Windows Vista 之下。 如果您使用這個函式,在 bVistaStyle 是 false,會在發行模式中傳回 NULL ,並擲回判斷提示偵錯模式。
如需 IFileDialogCustomize 介面的詳細資訊,請參閱 IFileDialogCustomize。
範例
這個範例會擷取內部 COM 物件。 若要執行這個程式碼範例,您必須編譯該 Windows Vista之下。
// Get the interface pointer
IFileDialogCustomize * customDlgPtr = m_myFileDialogPtr->GetIFileDialogCustomize();
// Make sure that it is not null
if ( customDlgPtr != NULL )
{
//
// Perform any interface functionality here
//
// Release the pointer
customDlgPtr->Release();
}
需求
**最小必要的作業系統:**Windows Vista
標題: afxdlgs.h