|
Inserts or updates the prepared proposal. |
|
|
void WriteProposal ( enum eReportMode eReportMode ) |
|
|
Parameters | eReportMode | [in] A value of the 'eReportMode' enumeration. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Change the description of the current proposal to 'Updated by SDK!'
pAnaProp->PrepareProposal (paUpdate);
pAnaProp->pDescription = "Updated by SDK!";
pAnaProp->WriteProposal (rmFullReport);
|
|
|
C# |
|
// Change the description of the current proposal to 'Updated by SDK!'
oAnaProp.PrepareProposal (ePrepareAction.paUpdate);
oAnaProp.pDescription = "Updated by SDK!";
oAnaProp.WriteProposal (eReportMode.rmFullReport);
|
|
|
VBS |
|
' Change the description of the current proposal to 'Updated by SDK!'
Call oAnaProp.PrepareProposal(paUpdate)
oAnaProp.pDescription = "Updated by SDK!"
Call oAnaProp.WriteProposal(rmFullReport)
|
|
|
VB.NET |
|
' Change the description of the current proposal to 'Updated by SDK!'
oAnaProp.PrepareProposal(ePrepareAction.paUpdate)
oAnaProp.pDescription = "Updated by SDK!"
oAnaProp.WriteProposal (eReportMode.rmFullReport)
|
|