• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

Retrieve a Row with basic properties

Some tooltip text!
• 1 minute to read
 • 1 minute to read
using SuperOffice;
using SuperOffice.CRM.Rows;
using(SoSession newSession = SoSession.Authenticate("SAL0", ""))
{
  //Create a New Row
  ContactRow myContactRow = ContactRow.GetFromIdxContactId(4);

  //Retrieve properties of basic data type
  string name = myContactRow.Name;
  string department = myContactRow.Department;
  int countryId = myContactRow.CountryId;
  bool isDeleted = myContactRow.IsDeleted;
}

Here some of the properties of a ContactRow are retrieved. ContactRow accesses the contact table in the database and we are retrieving data in a row with row ID equal to 4.

In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top