|
IMVIOTextfileRenderer
The IMVIOTextfileRenderer interface is used to setup the I/O
Textfile Renderer Filter. Read the filter description to see how
to use the filter.
Header file:
iMVIOTextfileRenderer.h
Interface definition language file:
iMVIOTextfileRenderer.idl
Typelib: MVIOTextfileRenderer
Interface ID:IID_IMVIOTextfileRenderer
HRESULT
put_OutputPath([in] BSTR szPath);
Sets the output folder path for the textfiles.
Parameter:
|
|
szPath |
String with the new folder path. |
HRESULT get_OutputPath([out, retval] BSTR
*szPath);
Gets the output folder path for the textfiles.
Parameter:
|
|
szPath |
Pointer to a BSTR for the folder path.
Release the string with SysFreeString(). |
HRESULT put_OutputFileTemplate([in]
BSTR szPath);
Sets the path to the output file template.
Parameter:
|
|
szPath |
String with the new output file
template path. |
HRESULT get_OutputFileTemplate([out,
retval] BSTR *szPath);
Gets the path to the output file template.
Parameter:
|
|
szPath |
Pointer to a BSTR for the output file
template path. Release the string with
SysFreeString(). |
Sets the path to the header template.
Parameter:
|
|
szPath |
String with the new header template
path. |
Gets the path to the header template.
Parameter:
|
|
szPath |
Pointer to a BSTR for header template
path. Release the string with SysFreeString(). |
HRESULT put_DatasetTemplateFile([in] BSTR
szPath);
Sets the path to the dataset template.
Parameter:
|
|
szPath |
String with the new dataset
template path. |
HRESULT get_DatasetTemplateFile([out,
retval] BSTR *szPath);
Gets the path to the header template.
Parameter:
|
|
szPath |
Pointer to a BSTR for the dataset
template path. Release the string with
SysFreeString(). |
Sets the path to the footer template.
Parameter:
|
|
szPath |
String with the new footer
template path. |
Gets the path to the footer template.
Parameter:
|
|
szPath |
Pointer to a BSTR for the footer
template path. Release the string with
SysFreeString(). |
HRESULT get_FileCreationEvent([retval][out] int
*piEvent);
Gets the current file creation event.
Parameter:
|
|
piEvent |
Pointer to the buffer for the file cration
event. |
HRESULT put_FileCreationEvent([in]
int iEvent);
Sets the current file creation event.
Parameter:
|
|
iEvent |
The new file cration event. |
Filter specific structures
and enumerators
typedef enum
_MV_CREATE_FILE_EVENT
{
MV_CREATE_FILE_EVENT_ONRUN = 0,
MV_CREATE_FILE_EVENT_ONDATASET =
MV_CREATE_FILE_EVENT_ONRUN + 1
} MV_CREATE_FILE_EVENT;
|