Class SheetArgs

class ooodev.events.args.calc.sheet_args.SheetArgs(source)[source]

Bases: AbstractSheetArgs

Parameters:

source (Any) –

__init__(source)

Constructor

Parameters:

source (Any) – Event Source

Return type:

None

static from_args(args)[source]

Gets a new instance from existing instance

Parameters:

args (AbstractSheetArgs) – Existing Instance

Returns:

args

Return type:

SheetArgs

get(key, default=<object object>)

Gets user data from event.

Parameters:
  • key (str) – Key used to store data

  • default (Any, optional) – Default value to return if key is not found.

Returns:

Data for key if found; Otherwise, if default is set then default.

Return type:

Any

New in version 0.9.0.

has(key)

Gets if a key exist in the instance

Parameters:

key (str) – key

Returns:

True if key exist; Otherwise False

Return type:

bool

New in version 0.9.0.

remove(key)

Removes key value pair from instance

Parameters:

key (str) – key

Returns:

True if key was found and removed; Otherwise, False

Return type:

bool

New in version 0.9.0.

set(key, value, allow_overwrite=True)

Sets a key value pair for event instance.

Parameters:
  • key (str) – Key

  • value (Any) – Value

  • allow_overwrite (bool, optional) – If True and a key already exist then its value will be over written; Otherwise value will not be over written. Defaults to True.

Returns:

True if values is written; Otherwise, False

Return type:

bool

New in version 0.9.0.

doc: XSpreadsheetDocument | None

Gets/Sets document of the event

event_data: Any

Gets/Sets any extra data associated with the event

property event_name: str

Gets the event name for these args

Return type:

str

property event_source: Any | None

Gets the event source for these args

Return type:

Any | None

index: int | None

Gets/Sets the index of the event

name: str | None

Gets/Sets name of the event

sheet: XSpreadsheet | None

Gets/Sets spreadsheet of the event

source: Any

Gets/Sets Event source