com.esri.arcgis.geodatabaseui
Interface ITableControl3

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ITableControl3Proxy, TableView

public interface ITableControl3
extends java.io.Serializable

COM Interface 'ITableControl3'. Generated 3/19/2015 1:21:02 PM from 'C:\ArcGIS\COM\esriGeoDatabaseUI.olb'

Description: 'Provides access to members that control the table once it has been shown.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID1e5471d9_7f04_4479_97ab_576a12a7cb9c
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void drawSelectedShapes(IDisplay pDisplay)
          Draws selected features on display.
 void editChanged()
          Call after start or stop editing, to update table grid.
 void executeOptionCommand(int option)
          Executes a command in the option menu.
 int getCurrentRow(boolean isOid)
          The current row the user is on.
 void insertNextRowAt(int placement, int oid)
          Determines where the next insert record is inserted when OnCreate is fired.
 void readToEndOfTable()
          Read all the OIDs/Rows in the table.
 void redraw()
          Redraws the grid.
 void removeAndReloadCache()
          Lose cache, so the table window is current with the underlying database.
 void rereadFIDs(ISelectionSet pSelection)
          Rereads rows.
 void setCellFont(int oid, java.lang.String fieldName, IColor pCellColor, IFont pTextFont, IColor pTextColor)
          Overrides the font setting for table cells.
 void setCurrentRow(boolean isOid, int rowNumber)
          The current row the user is on.
 void setHideOptionsButton(boolean rhs1)
          Hides the options button.
 void setHideViewToggleButtons(boolean rhs1)
          Hides the view toggle buttons.
 void setSelectToggleAlwaysEnabled(boolean rhs1)
          Ensures that the Select button is always active of the view toggle buttons.
 void updateSelection(ISelectionSet pSelection)
          Updates the current selection, that the current selection is currently pointing to.
 

Field Detail

IID1e5471d9_7f04_4479_97ab_576a12a7cb9c

static final int IID1e5471d9_7f04_4479_97ab_576a12a7cb9c
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

editChanged

void editChanged()
                 throws java.io.IOException,
                        AutomationException
Call after start or stop editing, to update table grid.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAndReloadCache

void removeAndReloadCache()
                          throws java.io.IOException,
                                 AutomationException
Lose cache, so the table window is current with the underlying database.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

updateSelection

void updateSelection(ISelectionSet pSelection)
                     throws java.io.IOException,
                            AutomationException
Updates the current selection, that the current selection is currently pointing to.

Parameters:
pSelection - A reference to a com.esri.arcgis.geodatabase.ISelectionSet (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawSelectedShapes

void drawSelectedShapes(IDisplay pDisplay)
                        throws java.io.IOException,
                               AutomationException
Draws selected features on display.

Parameters:
pDisplay - A reference to a com.esri.arcgis.display.IDisplay (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

rereadFIDs

void rereadFIDs(ISelectionSet pSelection)
                throws java.io.IOException,
                       AutomationException
Rereads rows. Called when viewing selected records and the selection changes.

Parameters:
pSelection - A reference to a com.esri.arcgis.geodatabase.ISelectionSet (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setCurrentRow

void setCurrentRow(boolean isOid,
                   int rowNumber)
                   throws java.io.IOException,
                          AutomationException
The current row the user is on. If isOid = TRUE, then rowNumber is an OID, else it is an offset.

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

getCurrentRow

int getCurrentRow(boolean isOid)
                  throws java.io.IOException,
                         AutomationException
The current row the user is on. If isOid = TRUE, then rowNumber is an OID, else it is an offset.

Parameters:
isOid - The isOid (in)
Returns:
The pRowNumber
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

redraw

void redraw()
            throws java.io.IOException,
                   AutomationException
Redraws the grid.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

readToEndOfTable

void readToEndOfTable()
                      throws java.io.IOException,
                             AutomationException
Read all the OIDs/Rows in the table.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setCellFont

void setCellFont(int oid,
                 java.lang.String fieldName,
                 IColor pCellColor,
                 IFont pTextFont,
                 IColor pTextColor)
                 throws java.io.IOException,
                        AutomationException
Overrides the font setting for table cells. At least the oid or fieldName must be specified. Enter null fonts to erase.

Parameters:
oid - The oid (in)
fieldName - The fieldName (in)
pCellColor - A reference to a com.esri.arcgis.display.IColor (in)
pTextFont - A reference to a com.esri.arcgis.support.ms.stdole.IFont (in)
pTextColor - A reference to a com.esri.arcgis.display.IColor (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insertNextRowAt

void insertNextRowAt(int placement,
                     int oid)
                     throws java.io.IOException,
                            AutomationException
Determines where the next insert record is inserted when OnCreate is fired. Adding records manually via the table window allways adds records to the end of the table.

Parameters:
placement - A com.esri.arcgis.geodatabaseui.esriTVRowInsertPlacement constant (in)
oid - The oid (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

executeOptionCommand

void executeOptionCommand(int option)
                          throws java.io.IOException,
                                 AutomationException
Executes a command in the option menu.

Parameters:
option - A com.esri.arcgis.geodatabaseui.esriTableViewOptions constant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setHideOptionsButton

void setHideOptionsButton(boolean rhs1)
                          throws java.io.IOException,
                                 AutomationException
Hides the options button. Default is False.

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

setSelectToggleAlwaysEnabled

void setSelectToggleAlwaysEnabled(boolean rhs1)
                                  throws java.io.IOException,
                                         AutomationException
Ensures that the Select button is always active of the view toggle buttons. Default is False.

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

setHideViewToggleButtons

void setHideViewToggleButtons(boolean rhs1)
                              throws java.io.IOException,
                                     AutomationException
Hides the view toggle buttons. Default is False.

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