ImageName property
The ImageName property sets or gets the full path and the file name of the image file that is associated with a page object. You can use this property when you are modifying the order of pages in a batch.
This property provides access to the variable IMAGEFILE.
Syntax
- VBScript
oDCO.ImageName as String
- C#
string ImageName { set; get; }
Applies to
Page objects only.Type
Read and write.C# example
The following example sets and gets the full path and the file name for the image file that is associated with the page object with ID"TM000001":m_oDCO.FindChild("TM000001").ImageName = "C:\\Datacap\\APT\\batches
\\20100096.001\\tm000001.tif";
strImageName = m_oDCO.FindChild("TM000001").ImageName;