Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/python/objects/context.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,25 @@ When the script is running in the cloud, the context object provides a context e
print(context.current_table)
```

## current_view

!!! info "current_view"

The name of the view that the current user is viewing when the script is run.

**Note:** This was added in version 6.2.

```python
context.current_view
```

__Example__

```python
from seatable_api import context
print(context.current_view)
```

## current_row

!!! info "current_row"
Expand Down
Loading