|
Creates an Analytical Proposal object. |
|
 |
IAnaProp* CreateAnaProp ( 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++ |
 | pAnaProp = NULL |
 | The object is destroyed immediately. |
 | C# |
 | System.Runtime.InteropServices.Marshal.ReleaseComObject(oAnaProp) |
 | oAnaProp = 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 oAnaProp = Nothing |
 | The object is destroyed immediately. |
 | VBN |
 | System.Runtime.InteropServices.Marshal.ReleaseComObject(oAnaProp) |
 | oAnaProp = 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 |
|
|
|
Samples |
|
 |
C++ |
|
IAnaPropPtr pAnaProp = pDossier->CreateAnaProp (VARIANT_TRUE);
|
|
 |
C# |
|
AnaProp oAnaProp = oDossier.CreateAnaProp (true);
|
|
 |
VBS |
|
Dim oAnaProp
Set oAnaProp = oDossier.CreateAnaProp(True)
|
|
 |
VB.NET |
|
Dim oAnaProp As ClSdk.AnaProp
oAnaProp = oDossier.CreateAnaProp(True)
|
|