|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface INgProject
Provides access to members that control the graphic project.
The project is the core object in your schematic application.
It acts as the central point where access is gained to other schematic components in the system as the data sources, the diagram types, the element type, etc..
INgProjectViews,
INgProjectAnalyst,
INgProjectAlgorithm,
INgProjectBuilder,
INgProjectEvents| Method Summary | |
|---|---|
void |
addDataSource(INgDataSource dataSource)
Adds the specified data source into the project. |
void |
addUserAttributes(Object userAttributes,
String attributesSetName)
Adds the specified attributes set into the project. |
void |
addUserProcedures(Object userProcedures,
String proceduresSetName)
Adds the specified procedures set into the project. |
void |
beginWaitCursor()
Enables the wait cursor. |
void |
close()
Closes the currently opened schematic session. |
void |
endWaitCursor()
Disables the wait cursor. |
INgView |
getActiveView()
Current active view in the project. |
INgDataSource |
getDataSource(String dataSourceName)
Returns the datasource named 'dataSourceName'. |
INgDataSources |
getDataSources()
List of the datasources defined for the project. |
INgDiagramType |
getDiagramType(String dgTypeName)
Returns the diagram type named 'dgTypeName' implemented by the project. |
INgDiagramTypes |
getDiagramTypes()
List of the diagram types associated with the project. |
Object |
getEffect(int effect)
Returns the effect 'effect' set for the project (see esriNgProjectEffect). |
INgElementType |
getElementType(String eltTypeName)
Returns the element type named 'eltTypeName' implemented by the project. |
INgElementTypes |
getElementTypes()
List of the element types associated with the project. |
INgFlagModel |
getFlagModel(String flagModelName)
Returns the flag model named 'flagModelName' implemented by the project. |
INgFlagModels |
getFlagModels()
List of the flag models implemented by the project. |
String |
getHelpFile()
Name of the online help file. |
Object |
getHighlightingEffect(int effect)
Returns the effect 'effect' used for highlighting the elements when they are selected (see esriNgHighlightingEffectType). |
int |
getInteractorMode()
Returns the currently active interaction (see esriNgInteractorMode). |
INgDiagrams |
getOpenedDiagrams()
List of the diagrams currently opened in the project. |
INgPatternModel |
getPatternModel(String patternModelName)
Returns the pattern model named 'patternModelName' implemented by the project. |
INgPatternModels |
getPatternModels()
List of the pattern models implemented by the project. |
String |
getProjectFileName()
Full pathname of the '.ini' file used to initialize the project. |
INgElements |
getSelectedElements()
List of the elements currently selected in the project. |
INgFlags |
getSelectedFlags()
List of the flags currently selected in the project. |
INgSymbol |
getSymbol(String symbolName)
Returns the symbol named 'symbolName'. |
INgUserAttributeSets |
getUserAttributeSets()
List of the user attibute sets defined for the project. |
INgUserProcedureSets |
getUserProcedureSets()
List of the user procedure sets defined for the project. |
void |
initialize(String fName)
Initializes the project based on the parameters contained in the file 'fName'. |
boolean |
isEffectSet(int effect)
Indicates if the effect 'effect' related to the project is set (see esriNgProjectEffect). |
boolean |
isHighlightingEffectSet(int effect)
Indicates if the effect 'effect' used for highlighting the elements when they are selected is set. |
boolean |
isProjectOpen()
Indicates if the schematic session is open. |
void |
open(boolean restoreSession,
boolean selectIfNotSet)
Opens the schematic session associated with the project. |
INgDiagram |
openDiagram(INgDiagramType diagType,
String diagramName,
boolean restore)
Opens the diagram named 'diagramName' implemented by the specified diagram type. |
void |
openDiagramForm()
Opens the predefined Schematics dialog-box that allows to select a type of diagram and a diagram. |
void |
refreshToolbars()
Triggers the 'OnRefreshToolbar' predefined callback. |
void |
removeHighlightingEffect(int effect)
Removes the effect 'effect' used for highlighting the elements when they are selected (see esriNgHighlightingEffectType). |
void |
sendEvent(String evtName,
int metaType,
String objectType,
String objectName)
Sends the event 'eventName' to the object named 'objectName' that is implemented by the object type named 'objectType' of the 'metatype' metatype. |
void |
setEffect(int effect,
Object effValue)
Modifies the effect 'effect' set for the project (see esriNgProjectEffect). |
void |
setHelpFile(String pVal)
Name of the online help file. |
void |
setHighlightingEffect(int effect,
Object effValue)
Modifies the effect 'effect' used for highlighting the elements when they are selected (see esriNgHighlightingEffectType). |
void |
setInteractorMode(int mode,
INgElementType typeToDigit,
int digitType)
Enables the interaction mode 'mode' (see esriNgInteractorMode). |
void |
setProjectFileName(String pVal)
Full pathname of the '.ini' file used to initialize the project. |
void |
setStatus(String status)
Triggers the OnStatusChange' predefined callback. |
void |
setTraceLevel(int level)
Enable the program tracing in 'level' mode. |
void |
terminate()
Puts an end to the schematic session and removes all the schematic components created in memory. |
void |
unselectAll()
Deselects all elements that are currently selected in all the opened views. |
| Method Detail |
|---|
INgView getActiveView()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
INgDiagrams getOpenedDiagrams()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProjectViews.getOpenedViews()
INgElements getSelectedElements()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgView.getSelectedElements()
INgDiagramTypes getDiagramTypes()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getDiagramType(String)
INgElementTypes getElementTypes()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getElementType(String)
void initialize(String fName)
throws IOException,
AutomationException
fName - The fName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.terminate()
void terminate()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.initialize(String)
void addDataSource(INgDataSource dataSource)
throws IOException,
AutomationException
dataSource - A reference to a com.esri.arcgis.schematic.INgDataSource (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getDataSource(String),
INgProject.getDataSources()
void addUserProcedures(Object userProcedures,
String proceduresSetName)
throws IOException,
AutomationException
The name of that set of procedures is proceduresSetName; it is that name that Schematics uses to reference this set of associated procedures.
userProcedures - A reference to another Automation Object (IDispatch) (in)proceduresSetName - The proceduresSetName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getUserProcedureSets()
void addUserAttributes(Object userAttributes,
String attributesSetName)
throws IOException,
AutomationException
The name of that set of attributes is attributesSetName; it is that name that Schematics uses to reference this set of associated attributes.
userAttributes - A reference to another Automation Object (IDispatch) (in)attributesSetName - The attributesSetName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getUserAttributeSets()
void open(boolean restoreSession,
boolean selectIfNotSet)
throws IOException,
AutomationException
If the project is not already initialized (Initialize method), either the selectIfNotSet parameter value is TRUE and Schematics opens the Open MS Window dialog box so that the user can indicate the full pathname of the desired Schematics .ini file that contains the project definition, or the selectIfNotSet parameter value is FALSE and Schematics creates a new empty .ini file in the application's currently active directory.
If the restoreSession parameter is set to TRUE, this method restores all the views to their last saved position and display state (scale, text and symbol sizes...).
Note: If you did not save the diagrams that were open when the session was last saved, the layout of the elements in these diagrams is not restored when the session is opened: the elements associated with the diagrams are positioned based on their database coordinates or on their last saved positions. Indeed, when you save your schematic session, you save the current position and display state of the schematic windows, but their contents (that make up the diagrams) is not saved.
About events managed during the project opening...
When the INgProject’s Open method is triggered, several Schematics event procedures are successively fired:
(3) (OnInitApplication)
(4) AfterOpenProject
(5) OnRefreshToolbar
The following lines detail the Schematics running way during the project opening:
(1) The BeforeInitProject event is fired.
(2) If no .ini file has been set (that is, the ProjectFileName INgProject property is not set) or if the .ini file doesn't exist and if the selectIfNotSet parameter of the Open method is True (default value), the Open MS window form automatically opens allowing you to select the desired .ini file.
When the .ini file is known, the BeforeOpenProject event is fired
(3) Then, the schematic project opens: That is, the project parameters file is loaded. If an error happens during the project parameters file reading, Schematics sets the session status to Closed and the session opening is interrupted.
If no error happens, and if an OnInitApplication event has been declared in the project parameters file, the associated treatments are executed. At the end of this step, Schematics sets the session status to Open.
(4) Then, the AfterOpenProject event is fired
(5) If the restoreSession parameter of the INgProject’s Open method is True (default value), the session is restored according to its last saving: all the views are opened to their last saved position and display state (scale, text and symbol sizes...).
The OnRefreshToolbar event is fired.
restoreSession - The restoreSession (in, optional, pass true if not required)selectIfNotSet - The selectIfNotSet (in, optional, pass true if not required)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProjectViews.restoreSession(String),
INgProject.isProjectOpen()
void close()
throws IOException,
AutomationException
If you have changed a diagram since the beginning of the session and have not saved it yet, depending on the SaveMode property value of this diagram, you may be asked if you want to save the changes. If you have not saved the current schematic session, depending on the SaveMode property value set for your project, you may be asked to do so before closing.
Note also that the Schematics BeforeCloseProject and AfterCloseProject events automatically fire when you use this method.
About events managed during the project closure
When the INgProject’s Close method is triggered is triggered, several Schematics event procedures are successively fired:
(4) BeforeCloseDiagram , BeforeCloseView, IsViewDestroyedByFramework
The following lines detail the Schematics running way during the project closure:
(1) If the session is already closed, the running is interrupted. The BeforeCloseProject event is fired.
(2) If diagrams are opened, for each opened diagram, Schematics checks its SaveMode property:
. Either the SaveMode INgDiagram property returns esriNgNotSaveByFramework, or the IsDiagramSavedByFramework event procedure returns False, and in these both cases, Schematics doesn’t charge of the diagram saving.
. Either the SaveMode INgDiagram property returns esriNgSaveByFramework, or it returns esriNgSaveUndefined but the IsDiagramSavedByFramework event procedure returns True, and in these both cases, Schematics charges of the diagram saving: a predefined form is automatically opened and end-user is asked if he wants to save the changes for the current diagram.
(3) Next, Schematics takes interest about the session saving:
- Either the SaveMode INgProjectViews property returns esriNgNotSaveByFramework, or the IsSessionSavedByFramework event procedure returns False, and in these both cases, Schematics doesn’t charge of the session saving.
- Or the SaveMode INgProjectViews property returns esriNgSaveByFramework, or it returns esriNgSaveUndefined but the IsSessionSavedByFramework event procedure returns True, and in these both cases, Schematics charges of the session saving: a predefined form is automatically opened and end-user is asked if he wants to save the currently open session.
(4) Then, the running concerns the closing of all the open diagrams (if such open diagrams exists.).
For each open diagram,
The BeforeCloseDiagram event is fired.
Next, the diagram's elements are removed. Then, for each its related opened views, the BeforeCloseView event is fired. If the legend sub-window is displayed in the view, it is deleted.
If the IsViewDestroyedByFramework event procedure returns True, Schematics charges of the view destruction.
(5) The AfterCloseProject event is triggered.
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void openDiagramForm()
throws IOException,
AutomationException
The diagrams available from the dialog’s dropdown lists are those defined in the schematic project parameters file. You select them by their type and name.
- If the diagram chosen was saved during a previous session for instance, it is loaded and restored with the page layout thus and then saved.
- If elements relating to this diagram were created or removed in the database since it was last saved, these modifications are reflected in the display (those elements that were removed no longer appear in the diagram and those that were created are displayed).
Note that when this method is triggered, the IsDiagramOpenedByFramework event function is automatically called. If this event returns FALSE, the Schematics predefined ‘Select diagram to open’ dialog box is not brought up.
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.openDiagram(com.esri.arcgis.schematic.INgDiagramType, String, boolean),
INgProjectEvents.isDiagramOpenedByFramework(com.esri.arcgis.schematic.INgProjectEventsIsDiagramOpenedByFrameworkEvent)
void unselectAll()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgView.unselectAll(boolean)
INgDiagramType getDiagramType(String dgTypeName)
throws IOException,
AutomationException
dgTypeName - The dgTypeName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getDiagramTypes(),
INgProjectBuilder.createDiagramType(String, com.esri.arcgis.schematic.INgDiagramType)
INgElementType getElementType(String eltTypeName)
throws IOException,
AutomationException
eltTypeName - The eltTypeName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getElementTypes(),
INgProjectBuilder.createElementType(String, int, com.esri.arcgis.schematic.INgElementType, boolean)
INgFlagModel getFlagModel(String flagModelName)
throws IOException,
AutomationException
flagModelName - The flagModelName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getFlagModels(),
INgProjectBuilder.createFlagModel(String)
int getInteractorMode()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.setInteractorMode(int, com.esri.arcgis.schematic.INgElementType, int)
void setInteractorMode(int mode,
INgElementType typeToDigit,
int digitType)
throws IOException,
AutomationException
In the case of the esriNgModeDigit interactor mode, the method also allows specifying the type of elements to be digitized and the digitizing mode (see esriNgDigitType list).
mode - A com.esri.arcgis.schematic.esriNgInteractorMode constant (in)typeToDigit - A reference to a com.esri.arcgis.schematic.INgElementType (in, optional, pass 0 if not required)digitType - A com.esri.arcgis.schematic.esriNgDigitType constant (in, optional, pass 0 if not required)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getInteractorMode()
void setTraceLevel(int level)
throws IOException,
AutomationException
The trace function can be run at three levels:
- esriNgErrorLevel; that is the program is traced and returned errors only.
- esriNgWarningLevel; that is the program is traced and returned errors and warning messages.
- esriNgInformationLevel; that is the program is traced and returned errors, warning messages and information messages (for instance, messages indicating the end of a procedure).
level - A com.esri.arcgis.schematic.esriNgTraceLevel constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProjectEvents.onTrace(com.esri.arcgis.schematic.INgProjectEventsOnTraceEvent)
void setEffect(int effect,
Object effValue)
throws IOException,
AutomationException
effect - A com.esri.arcgis.schematic.esriNgProjectEffect constant (in)effValue - A Variant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.isEffectSet(int),
INgProject.setHighlightingEffect(int, java.lang.Object),
INgProject.getEffect(int)
INgDiagram openDiagram(INgDiagramType diagType,
String diagramName,
boolean restore)
throws IOException,
AutomationException
The diagramType INgDiagramType interface must already exist.
The diagramName parameter must be consistent with the diagram name identifier definition for its associated diagram type.
If the query returning all the diagrams of this type is set to NULL (that is, if there is only one diagram of this type), any diagramName can be used: all the associated diagrams represent the same network.
If there is more than one diagram of this type, the diagramName parameter syntax must follow that of the identifier defined for this diagram type otherwise the diagram that will be opened, will be empty!
Note that if the chosen open diagram was previously saved, it is loaded and restored with the page layout thus and then saved.
Several Schematic event procedures are automatically chained during a diagram opening. For more details on these events' chaining, please see the Remarks section available from the INgDiagram Open method help-page.
diagType - A reference to a com.esri.arcgis.schematic.INgDiagramType (in)diagramName - The diagramName (in)restore - The restore (in, optional, pass true if not required)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.openDiagramForm(),
INgDiagramType.openDiagram(String, boolean)
INgPatternModel getPatternModel(String patternModelName)
throws IOException,
AutomationException
patternModelName - The patternModelName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getPatternModels(),
INgProjectBuilder.createPatternModel(String, int, String)
Object getEffect(int effect)
throws IOException,
AutomationException
effect - A com.esri.arcgis.schematic.esriNgProjectEffect constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.isEffectSet(int),
INgProject.setEffect(int, java.lang.Object),
INgProject.getHighlightingEffect(int)
boolean isEffectSet(int effect)
throws IOException,
AutomationException
By default, Schematics automatically sets default values for some project effects (see the List of the project effect default values, below). For all these effects, the IsEffectSet method returns True. For the others effects (those that are not automatically set), the IsEffectSet method returns True only if the effect has been set:
- Either when defining the project's characteristics through ArcGIS Schematics Designer,
- Or by calling the SetEffect method in the program code.
List of the project effect default values
esriNgProjectFitMargin: 0.05.
esriNgProjectFitAllMargin: 0.02.
esriNgProjectFitMarginMode: esriNgRelativeMargin.
esriNgProjectFitAllMarginMode: esriNgRelativeMargin.
esriNgProjectFolderPath: Folder named "GraphicFolder" according to the ".ini" file location
esriNgProjectBackupPath: Folder named "GraphicBackup" according to the ".ini" file location
esriNgProjectSymbolPath: Folder named "Cgm" according to the ".ini" file location
esriNgProjectSymbolClipping: False
esriNgProjectSymbolScaling: 1
esriNgProjectLinkLabelDistance: 1
esriNgProjectInterlineSpacing: 0.1
esriNgProjectLineColor: 1 (red)
esriNgProjectLineStyle: esriNgSolid
esriNgProjectLineWidth: 1
esriNgprojectFillColor: 1 (red)
esriNgProjectFillStyle: esriNgSolid
esriNgProjectHatchStyle: esriNgHatchHorizontal
esriNgProjectTextAlignment: esriNgBottomLeft
esriNgProjectTextAngle: 0
esriNgProjectTextColor: 1 (red)
esriNgProjectTextSize: 1
For more details, see Project Effects Definition.
effect - A com.esri.arcgis.schematic.esriNgProjectEffect constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.setEffect(int, java.lang.Object),
INgProject.isHighlightingEffectSet(int),
INgProject.getEffect(int)
boolean isProjectOpen()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.close(),
INgProject.open(boolean, boolean)
void beginWaitCursor()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.endWaitCursor()
void endWaitCursor()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.beginWaitCursor()
INgSymbol getSymbol(String symbolName)
throws IOException,
AutomationException
The specified symbolName CGM file must be located in the CGM folder. If it is not, the GetSymbol function returns Nothing.
Note: The symbolName parameter must be passed to the function without the .cgm extension.
symbolName - The symbolName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void sendEvent(String evtName,
int metaType,
String objectType,
String objectName)
throws IOException,
AutomationException
The event eventName must be already defined (eventName is the UserEventName defined for a behavior).
evtName - The evtName (in)metaType - A com.esri.arcgis.schematic.esriNgMetaType constant (in)objectType - The objectType (in)objectName - The objectName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
INgFlagModels getFlagModels()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getFlagModel(String)
INgPatternModels getPatternModels()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getPatternModel(String)
INgFlags getSelectedFlags()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgView.getSelectedFlags()
INgDataSources getDataSources()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.getDataSource(String)
INgUserAttributeSets getUserAttributeSets()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.addUserAttributes(java.lang.Object, String)
INgUserProcedureSets getUserProcedureSets()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.addUserProcedures(java.lang.Object, String)
INgDataSource getDataSource(String dataSourceName)
throws IOException,
AutomationException
dataSourceName - The dataSourceName (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.addDataSource(com.esri.arcgis.schematic.INgDataSource),
INgProject.getDataSources()
String getProjectFileName()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void setProjectFileName(String pVal)
throws IOException,
AutomationException
pVal - The pVal (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
Object getHighlightingEffect(int effect)
throws IOException,
AutomationException
effect - A com.esri.arcgis.schematic.esriNgHighlightingEffectType constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.isHighlightingEffectSet(int),
INgProject.getEffect(int),
INgProject.setHighlightingEffect(int, java.lang.Object)
void setHighlightingEffect(int effect,
Object effValue)
throws IOException,
AutomationException
effect - A com.esri.arcgis.schematic.esriNgHighlightingEffectType constant (in)effValue - A Variant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.setEffect(int, java.lang.Object),
INgProject.isHighlightingEffectSet(int),
INgProject.getHighlightingEffect(int)
void removeHighlightingEffect(int effect)
throws IOException,
AutomationException
effect - A com.esri.arcgis.schematic.esriNgHighlightingEffectType constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.isHighlightingEffectSet(int),
INgProject.setHighlightingEffect(int, java.lang.Object),
INgProject
boolean isHighlightingEffectSet(int effect)
throws IOException,
AutomationException
The 'effect' effect has been set:
- Either through ArcGIS Schematics Designer when defining the Highlight tab parameters for the open project,
- Or by calling the SetHighlightingEffect method in your program code.
effect - A com.esri.arcgis.schematic.esriNgHighlightingEffectType constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProject.isEffectSet(int),
INgProject.getHighlightingEffect(int),
INgProject.setHighlightingEffect(int, java.lang.Object)
String getHelpFile()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void setHelpFile(String pVal)
throws IOException,
AutomationException
pVal - The pVal (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void refreshToolbars()
throws IOException,
AutomationException
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.INgProjectEvents.onRefreshToolbar(com.esri.arcgis.schematic.INgProjectEventsOnRefreshToolbarEvent)
void setStatus(String status)
throws IOException,
AutomationException
status - The status (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||