to_array method

to_array(self)

Creates and returns an array with all comments.

Returns

Array of IComment.

def to_array(self):
    ...

to_array(self, start_index, count)

Creates and returns an array with all comments from the specified range.

Returns

Array of IComment.

def to_array(self, start_index, count):
    ...
ParameterTypeDescription
start_indexintAn index of a first comment to return.
countintA number of comments to return.

See Also