Sets the InstituteContactId for the contact with the option to flowdown the name and address. The InstituteContactId property should normally be used, which is the same as calling this function but with true sent for both flowdown options. Use this method to override one or both of the flowdown options.

Namespace:  Asi.iBO.ContactManagement
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public void SetInstituteContactId(
	string instituteContactId,
	bool instituteNameFlowDown,
	bool addressFlowDown
)
Visual Basic (Declaration)
Public Sub SetInstituteContactId ( _
	instituteContactId As String, _
	instituteNameFlowDown As Boolean, _
	addressFlowDown As Boolean _
)
Visual C++
public:
void SetInstituteContactId(
	String^ instituteContactId, 
	bool instituteNameFlowDown, 
	bool addressFlowDown
)

Parameters

instituteContactId
Type: System..::.String
The ContactId of this contact's parent institute/company or employer
instituteNameFlowDown
Type: System..::.Boolean
If true, the InstituteName is set from the InstituteName of the institute referenced in instituteContactId.
addressFlowDown
Type: System..::.Boolean
If true, address information for this contact is copied from the address of the institute referenced in instituteContactId. If false, no address information is copied to this contact

See Also