get method

Contents
[ ]

get

Gets the Comment element at the specified index.

Returns

The element at the specified index.

def get(self, index):
    ...
ParameterTypeDescription
indexintThe zero based index of the element.

get

Gets the Comment element at the specified cell.

Returns

The element at the specified cell.

def get(self, cell_name):
    ...
ParameterTypeDescription
cell_namestrCell name.

get

Add API for Python Via .Net.since this[int, int] is unsupported

Returns

The element at the specified cell.

def get(self, row, column):
    ...
ParameterTypeDescription
rowintRow index.
columnintColumn index.

See Also