AccProp::SetTransMode (Interface: AccProp)
 
Sets the transaction mode.
 
void SetTransMode (
    enum eTransMode eTransMode
)
 
Parameters
eTransMode
[in] A value of the 'eTransMode' enumeration.
 
Remarks
A transaction is only valid within one AccProp-interface, you cannot use a transaction to modify multiple interfaces simultaneously.
 
See Also
CreateAccProp
 
Samples
 
C++
 
bool bOK = true, bContinue = true;

// Start the transaction
pAccProp->SetTransMode (tmBegin);

while (bContinue)
{
    // Perform some actions on the file, saving the result in bOK
}

if (bOK)        // If no errors occured, commit the transaction, saving all changes to disk.
    pAccProp->SetTransMode (tmCommit);
else            // If errors occured, roll back the transaction, discarding all changes.
    pAccProp->SetTransMode (tmRollBack);

C#
 
bool bOK = true, bContinue = true;

// Start the transaction
oAccProp.SetTransMode (eTransMode.tmBegin);

while (bContinue)
{
    // Perform some actions on the file, saving the result in bOK
}

if (bOK)        // If no errors occured, commit the transaction, saving all changes to disk.
    oAccProp.SetTransMode (eTransMode.tmCommit);
else            // If errors occured, roll back the transaction, discarding all changes.
    oAccProp.SetTransMode (eTransMode.tmRollBack);

VBS
 
Dim bOK, bContinue
bOK = True
bContinue = True

' Start the transaction
Call oAccProp.SetTransMode(tmBegin)

While bContinue
    ' Perform some actions on the file, saving the result in bOK
Wend

If bOK Then        ' If no errors occured, commit the transaction, saving all changes to disk.
    Call oAccProp.SetTransMode(tmCommit)
Else            ' If errors occured, roll back the transaction, discarding all changes.
    Call oAccProp.SetTransMode(tmRollBack)
End If

VB.NET
 
Dim bOK, bContinue As Boolean
bOK = True
bContinue = True

' Start the transaction
oAccProp.SetTransMode(eTransMode.tmBegin)

While bContinue
    ' Perform some actions on the file, saving the result in bOK
End While

If bOK Then        ' If no errors occured, commit the transaction, saving all changes to disk.
    oAccProp.SetTransMode(eTransMode.tmCommit)
Else            ' If errors occured, roll back the transaction, discarding all changes.
    oAccProp.SetTransMode(eTransMode.tmRollBack)
End If