| |
| Creates a Sales Invoice Detail line object. |
| |
 |
ISInvceDet* CreateSInvceDet ( 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++ |
 | pSInvceDet = NULL |
 | The object is destroyed immediately. |
 | C# |
 | System.Runtime.InteropServices.Marshal.ReleaseComObject(oSInvceDet) |
 | oSInvceDet = 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 oSInvceDet = Nothing |
 | The object is destroyed immediately. |
 | VBN |
 | System.Runtime.InteropServices.Marshal.ReleaseComObject(oSInvceDet) |
 | oSInvceDet = 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++ |
| |
ISInvceDetPtr pSInvceDet = pYear->CreateSInvceDet (VARIANT_TRUE);
|
|
 |
C# |
| |
SInvceDet oSInvceDet = oYear.CreateSInvceDet (true);
|
|
 |
VBS |
| |
Dim oSInvceDet
Set oSInvceDet = oYear.CreateSInvceDet(True)
|
|
 |
VB.NET |
| |
Dim oSInvceDet As ClSdk.SInvceDet
oSInvceDet = oYear.CreateSInvceDet(True)
|
|