ToArray()

CommentCollection::ToArray() method

Creates and returns an array with all comments.

System::ArrayPtr<System::SharedPtr<IComment>> Aspose::Slides::CommentCollection::ToArray() override

Return Value

Array of Comment.

CommentCollection::ToArray(int32_t, int32_t) method

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

System::ArrayPtr<System::SharedPtr<IComment>> Aspose::Slides::CommentCollection::ToArray(int32_t startIndex, int32_t count) override

Arguments

ParameterTypeDescription
startIndexint32_tAn index of a first comment to return.
countint32_tA number of comments to return.

Return Value

Array of Comment.

See Also