DTwainAppInfo::GetProductFamily

Top  Previous  Next

Syntax

std::string GetProductFamily( ) const;

 

Return Value

Returns the TWAIN Product Family setting in the DTwainAppInfo object.  Note that the return value is a standard C++ std::string.

 

Example:

#include <string>

#include <iostream>

#include "cdtwain.h"

//...

DTWAIN::DTwainAppInfo AppInfo;

//...

std::string sInfo = AppInfo.GetProductFamily( );

std::cout << "The product family is " << sInfo;