Dossier::CreateSpplm (Interface: Dossier)
 
Creates a Supplement object.
 
ISpplm* CreateSpplm (
    VARIANT_BOOL bCanChange
)
 
Parameters
bCanChange
[in] True if you want to make changes (perform inserts, updates or deletes) to the object you are creating, otherwise false.
 
Remarks
How to explicitly destroy this object?
C++
pSpplm = NULL
The object is destroyed immediately.
C#
System.Runtime.InteropServices.Marshal.ReleaseComObject(oSpplm)
oSpplm = null
By assigning the object to null the object is released (the reference count is decremented) but not destroyed. The garbage collector decides when the object is actually destroyed. Adding the ReleaseComObject-statement speeds up the actual destruction of the object.
VBS
Set oSpplm = Nothing
The object is destroyed immediately.
VBN
System.Runtime.InteropServices.Marshal.ReleaseComObject(oSpplm)
oSpplm = Nothing
By assigning the object to Nothing the object is released (the reference count is decremented) but not destroyed. The garbage collector decides when the object is actually destroyed. Adding the ReleaseComObject-statement speeds up the actual destruction of the object.
 
See Also
CreateDossierContext
 
Samples
 
C++
 
ISpplmPtr pSpplm = pDossier->CreateSpplm (VARIANT_TRUE);

C#
 
Spplm oSpplm = oDossier.CreateSpplm (true);

VBS
 
Dim oSpplm
Set oSpplm = oDossier.CreateSpplm(True)

VB.NET
 
Dim oSpplm As ClSdk.Spplm
oSpplm = oDossier.CreateSpplm(True)