다음을 통해 공유


CFileDialog::GetIFileDialogCustomize

내부 COM 개체에 대 한 포인터를 검색에 지정 된 CFileDialog.

IFileDialogCustomize* GetIFileDialogCustomize();

반환 값

내부 COM 개체에 대 한 포인터는 CFileDialog.것이 포인터를 적절 하 게 해제 해야 합니다.

설명

아래만이 함수를 사용 Windows Vista 가 있는 개체를 bVistaStyle 설정 true.이 함수를 사용 하는 경우 때 bVistaStyle 는 false, 반환 됩니다 NULL 릴리스 모드 및 어설션 디버그 모드에서 throw 합니다.

자세한 정보는 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

참고 항목

참조

CFileDialog 클래스

계층 구조 차트

CFileDialog::GetIFileOpenDialog

CFileDialog::GetIFileSaveDialog