com.esri.arcgis.analyst3d
Interface IImport3DFile2

All Superinterfaces:
Serializable
All Known Implementing Classes:
IImport3DFile2Proxy

public interface IImport3DFile2
extends Serializable

Provides access to a file used to create 3D General Multipatches.

Description

This interface is new at ArcGIS 9.3. It supersedes IImport3DFile.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.


Method Summary
 void createFromFile(String filePath)
          Load from File.
 String getFileDescription()
          The File Description for Browsing.
 String getFileExtension()
          The File Extension for Browsing.
 IGeometry getGeometry()
          The Geometry interface.
 void getPlacementPreferences(double[] normalizedAnchorX, double[] normalizedAnchorY, double[] normalizedAnchorZ, boolean[] bIsBillboard)
          Symbol placement preferences.
 boolean isCanBrowse()
          Indicates if this implementation can browse for files.
 boolean isValidFile(String filePath)
          Indicates if this is a valid 3D Import File.
 

Method Detail

isValidFile

boolean isValidFile(String filePath)
                    throws IOException,
                           AutomationException
Indicates if this is a valid 3D Import File.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Parameters:
filePath - The filePath (in)
Returns:
The pValid
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

createFromFile

void createFromFile(String filePath)
                    throws IOException,
                           AutomationException
Load from File.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Parameters:
filePath - The filePath (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getGeometry

IGeometry getGeometry()
                      throws IOException,
                             AutomationException
The Geometry interface.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Returns:
A reference to a com.esri.arcgis.geometry.IGeometry
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isCanBrowse

boolean isCanBrowse()
                    throws IOException,
                           AutomationException
Indicates if this implementation can browse for files.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Returns:
The pCanBrowse
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFileDescription

String getFileDescription()
                          throws IOException,
                                 AutomationException
The File Description for Browsing.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Returns:
The pDescription
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFileExtension

String getFileExtension()
                        throws IOException,
                               AutomationException
The File Extension for Browsing.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Returns:
The pFileExtention
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getPlacementPreferences

void getPlacementPreferences(double[] normalizedAnchorX,
                             double[] normalizedAnchorY,
                             double[] normalizedAnchorZ,
                             boolean[] bIsBillboard)
                             throws IOException,
                                    AutomationException
Symbol placement preferences.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires 3D Analyst Extension.

Parameters:
normalizedAnchorX - The normalizedAnchorX (out: use single element array)
normalizedAnchorY - The normalizedAnchorY (out: use single element array)
normalizedAnchorZ - The normalizedAnchorZ (out: use single element array)
bIsBillboard - The bIsBillboard (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.