Product.DocLink property is an XML document describing links to images or documents for the product.
The links or images will appear within the info sheet of the product in SpeedyCraft Mobile product list.
Please use UTF-8 encoding, as UTF-16 might fail on mobile device interpretation.
Example code:
//The XML we would like to set
string strDocLink = @"<?xml version=""1.0"" encoding=""utf-8""?><DocLink>
<Document>
<Link>https://www.devinco.com/wp-content/uploads/2014/08/Brochure_lowRes2.pdf</Link>
<Description>SpeedyCraft brosjyre</Description>
</Document>
<Document>
<Link>https://www.devinco.com/wp-content/uploads/2015/01/dvc-logo.png</Link>
<Description>Logo image</Description>
</Document>
</DocLink>";
//Create product
CSCProduct oProduct = m_SCImpExp.CreateProductObject();
oProduct.Add("123");
oProduct.ProductName = "Some product";
oProduct.DocLink = strDocLink;
oProduct.Save();
oProduct.Close();