com.hp.lft.sdk.winforms

Interface DataGridView

  • All Superinterfaces:
    CustomGrid


    public interface DataGridView
    extends CustomGrid
    A .NET Windows Forms data grid view object.
    • Method Summary

      Modifier and TypeMethod and Description
      voidactivateCell(int row, java.lang.String columnHeader)
      Double-clicks the specified cell in this grid.
      voidactivateColumn(int column)
      Double-clicks the specified column header in this grid.
      voidactivateColumn(java.lang.String columnHeader)
      Double-clicks the specified column header in this grid.
      TableCellgetCell(int row, java.lang.String columnHeader)
      Returns a cell in the grid.
      java.util.List<TableRow<TableCell>>getRows()
      Returns the collection of rows.
      voidmakeCellVisible(int row, java.lang.String columnHeader)
      Scrolls the specified cell into view.
      voidselectCell(int row, java.lang.String columnHeader)
      Selects (clicks) the specified cell in this grid.
      voidselectColumn(int column)
      Selects (clicks) the specified column header in this grid.
      voidselectColumn(java.lang.String columnHeader)
      Clicks the specified column header in this grid.
    • Method Detail

      • activateCell

        void activateCell(int row,
                          java.lang.String columnHeader)
                   throws GeneralLeanFtException
        Double-clicks the specified cell in this grid.
        Parameters:
        row - 0-based row number.
        columnHeader - the column caption.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • makeCellVisible

        void makeCellVisible(int row,
                             java.lang.String columnHeader)
                      throws GeneralLeanFtException
        Scrolls the specified cell into view.
        Parameters:
        row - 0-based row number.
        columnHeader - the column caption.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • selectCell

        void selectCell(int row,
                        java.lang.String columnHeader)
                 throws GeneralLeanFtException
        Selects (clicks) the specified cell in this grid.
        Parameters:
        row - 0-based row number.
        columnHeader - the column caption.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • activateColumn

        void activateColumn(int column)
                     throws GeneralLeanFtException
        Double-clicks the specified column header in this grid.
        Parameters:
        column - 0-based column index
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • activateColumn

        void activateColumn(java.lang.String columnHeader)
        	throws GeneralLeanFtException
        Double-clicks the specified column header in this grid.
        Parameters:
        columnHeader - the column caption.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • selectColumn

        void selectColumn(int column)
                   throws GeneralLeanFtException
        Selects (clicks) the specified column header in this grid.
        Parameters:
        column - 0-based column index
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • selectColumn

        void selectColumn(java.lang.String columnHeader)
             throws GeneralLeanFtException
        Clicks the specified column header in this grid.
        Parameters:
        columnHeader - the column caption
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getCell

        TableCell getCell(int row,
        		   java.lang.String columnHeader)
        	throws GeneralLeanFtException
        Returns a cell in the grid.
        Parameters:
        row - 0-based row number
        columnHeader - the column caption
        Returns:
        the cell
        Throws:
        GeneralLeanFtException - if an error occurs during execution.