---
title: "performClickOnCell(atColumn:row:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nstableview/performclickoncell(atcolumn:row:)"
---

# performClickOnCell(atColumn:row:)

Performs a click action on the cell at the specified row and column.

## Declaration

```swift
func performClickOnCell(atColumn column: Int, row: Int)
```

## Parameters

- `column`: The column of the cell.
- `row`: The row of the cell.

## Discussion

Discussion Acquires the NSTableView, copies it, invokes performClick(_:) or performClick(withFrame:in:) (if the cell is an NSPopUpButtonCell), and then updates the data source, if required. This method does not do any checks to see if the cell is enabled. note: This method is only available to NSCell-based table views.

## See Also

### Deprecated Methods

- [focusedColumn()](appkit/nstableview/focusedcolumn().md)
- [setFocusedColumn(_:)](appkit/nstableview/setfocusedcolumn(_:).md)
- [shouldFocusCell(_:atColumn:row:)](appkit/nstableview/shouldfocuscell(_:atcolumn:row:).md)
- [preparedCell(atColumn:row:)](appkit/nstableview/preparedcell(atcolumn:row:).md)
