|
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!'
pAccProp->PrepareProposal (paUpdate);
pAccProp->pDescription = "Updated by SDK!";
pAccProp->WriteProposal (rmFullReport);
|
|
|
C# |
|
// Change the description of the current proposal to 'Updated by SDK!'
oAccProp.PrepareProposal (ePrepareAction.paUpdate);
oAccProp.pDescription = "Updated by SDK!";
oAccProp.WriteProposal (eReportMode.rmFullReport);
|
|
|
VBS |
|
' Change the description of the current proposal to 'Updated by SDK!'
Call oAccProp.PrepareProposal(paUpdate)
oAccProp.pDescription = "Updated by SDK!"
Call oAccProp.WriteProposal(rmFullReport)
|
|
|
VB.NET |
|
' Change the description of the current proposal to 'Updated by SDK!'
oAccProp.PrepareProposal(ePrepareAction.paUpdate)
oAccProp.pDescription = "Updated by SDK!"
oAccProp.WriteProposal (eReportMode.rmFullReport)
|
|