|
ReturnTypes |
Top Previous Next |
|
When you call an ObjAcct Framework API function, you must specify a "ReturnType" of either Standard or Extended. A Standard ReturnType tells the ObjAcct Framework to only return RowIDs and Text fields. A ReturnType of Extended tells the ObjAcct API to return RowIDs, Text fields as well as any associated EntityIDs and DocumentIDs.
An Enumeration is available for ReturnType in the StdLib namespace:
Public Enum ReturnType As Byte Standard = 0 Extended = 1 End Enum
See: DataSets |