com.hp.lft.sdk.wpf

Interface Table

    • Method Detail

      • activateCell

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

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

        void extendSelect(int row)
                   throws GeneralLeanFtException
        Selects an additional item from the multi-selection grid.
        The entire row you specify is selected (in addition to any currently selected rows and cells).
        Parameters:
        row - 0-based row index.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • extendSelect

        void extendSelect(int row,
                          int column)
                   throws GeneralLeanFtException
        Adds the specified cell to the collection of selected items in this multi-selection grid.
        Parameters:
        row - 0-based row index
        column - 0-based column index
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • extendSelect

        void extendSelect(int row,
                          java.lang.String columnHeader)
                   throws GeneralLeanFtException
        Adds the specified cell to the collection of selected items in this multi-selection grid.
        Parameters:
        row - 0-based row index
        columnHeader - the column caption
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • selectCell

        void selectCell(int row,
                        int column)
                 throws GeneralLeanFtException
        Clicks the specified cell in this grid.
        Parameters:
        row - 0-based row index
        column - 0-based column index
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • selectCell

        void selectCell(int row,
                        java.lang.String columnHeader)
                 throws GeneralLeanFtException
        Clicks the specified cell in this grid.
        Parameters:
        row - 0-based row index
        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 the 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 header name
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getCell

        TableCell getCell(int row,
                          String columnHeader)
                   throws GeneralLeanFtException
        Returns a cell specified by row index and column header.
        Parameters:
        row - 0-based row index.
        columnHeader - the column header.
        Returns:
        the specified table cell
        Throws:
        GeneralLeanFtException - if an error occurs during execution.