This method saves all objects in the specified TIFF.

This is like SaveObjects, but incorporates the objects info in a tag of the TIFF file.

This method is not compatible with Wang Imaging (you have to use another method to save as Wang Imaging), but allows you to save all IEAnnotations objects.

(

The tag used for default is 40101.

To load objects back use LoadFromTIFF.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SaveToTIFF(
	string fileName,
	int pageIndex
)
Public Sub SaveToTIFF ( _
	fileName As String, _
	pageIndex As Integer _
)
public:
void SaveToTIFF(
	String^ fileName, 
	int pageIndex
)

Parameters

fileName
String
Specifies the TIFF where to insert objects.
pageIndex
Int32
Specifies the page in a multi-page tiff (0..) used to store the objects. In this way you can store a set of objects for each tiff page.

See Also