ServiceFunctionsAddcontacts Method |
Add a contact to a contact array
Namespace: Scanjour.Workflow4.ActivityLibrary.ServiceProcessAssembly: Scanjour.Workflow4.ActivityLibrary_24.5.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.5.0.0.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic static Contact[] Addcontacts(
Contact[] contacts,
Contact contact,
bool InFront = false
)
Public Shared Function Addcontacts (
contacts As Contact(),
contact As Contact,
Optional InFront As Boolean = false
) As Contact()
public:
static array<Contact^>^ Addcontacts(
array<Contact^>^ contacts,
Contact^ contact,
bool InFront = false
)
static member Addcontacts :
contacts : Contact[] *
contact : Contact *
?InFront : bool
(* Defaults:
let _InFront = defaultArg InFront false
*)
-> Contact[]
Parameters
- contacts Contact
- The contact list.
- contact Contact
- The contact to add.
- InFront Boolean (Optional)
- Add the contact as first contact
Return Value
ContactTHe new contact list.
See Also