CommentCollection
अवलोकन
CommentCollection जावा के लिए Aspose.Slides FOSS में एक वर्ग है. वारिसों सेः: ICommentCollection.
एक लेखक के टिप्पणियों का संग्रह है।.
यह वर्ग जावा प्रोग्राम में CommentCollection ऑब्जेक्ट के साथ काम करने के लिए 20 विधियाँ प्रदान करता है. उपलब्ध विधियों में शामिल हैंः: CommentCollection, addComment, asICollection, asIEnumerable, buildComment, clear, collectMyComments, findCommentByIdx, get, getAllCommentsParts, getAuthorObj, getOrCreateCommentsPart, और 7 अतिरिक्त विधियाँ।. सभी सार्वजनिक सदस्य Aspose.Slides FOSS for Java पैकेज को स्थापित करने के बाद किसी भी जावा एप्लिकेशन तक पहुंच सकते हैं. गुण: allCommentsParts, authorObj.
गुण
| नाम | प्रकार | Access | विवरण |
|---|---|---|---|
authorObj | ICommentAuthor | पढ़िए। | बैकअप लेखक डेटा से owning {@link ICommentAuthor} ऑब्जेक्ट को हल करता है. |
allCommentsParts | List<CommentsPartEntry> | पढ़िए। | सभी {@link CommentsPart} उदाहरण लौटाता है जो इस लेखक द्वारा टिप्पणी वाले हैं. |
विधिएँ
| Signature | विवरण |
|---|---|
CommentCollection(author: ICommentAuthor) | दिए गए लेखक के लिए टिप्पणी संग्रह बनाता है. |
initInternal(authorData: AuthorData, authorsPart: CommentAuthorsPart, pkg: OpcPackage, presentation: Presentation) | पैकेज-स्तर बैकअप डेटा के साथ इस संग्रह को आरंभ करता है. |
resolveSlide(partName: String) → ISlide | {@link ISlide} जिसका भाग नाम दिए गए भाग के नाम से मेल खाता है, या { @code null} लौटाता है. |
getAuthorObj() → ICommentAuthor | बैकअप लेखक डेटा से owning {@link ICommentAuthor} ऑब्जेक्ट को हल करता है. |
getAllCommentsParts() → List<CommentsPartEntry> | सभी {@link CommentsPart} उदाहरण लौटाता है जो इस लेखक द्वारा टिप्पणी वाले हैं. |
getOrCreateCommentsPart(slidePartName: String) → CommentsPart | दी गई स्लाइड भाग नाम के लिए {@link CommentsPart} प्राप्त करता है या बनाता है. |
buildComment(data: CommentData, cp: CommentsPart, slideObj: ISlide) → Comment | कच्चे टिप्पणी डेटा, एक टिप्पणी भाग और वैकल्पिक स्लाइड से {@link Comment} बनाता है. |
collectMyComments() → List<MyCommentEntry> | इस लेखिका की सभी टिप्पणियों को पैकेज में सभी स्लाइड पर एकत्र करता है।. |
addComment(text: String, slide: ISlide, position: PointF, createdTime: LocalDateTime) → IComment | पाठ, स्लाइड, स्थिति और निर्माण समय के साथ एक नई टिप्पणी जोड़ता है, IComment लौटाता हैं। |
insertComment(index: int, text: String, slide: ISlide, position: PointF, createdTime: LocalDateTime) → IComment | IComment को वापस करके निर्दिष्ट विवरण के साथ दिए गए सूचकांक में टिप्पणी सम्मिलित करता है, |
removeAt(index: int) | निर्दिष्ट सूचकांक पर टिप्पणी हटाता है |
remove(comment: IComment) | संग्रह से निर्दिष्ट IComment को मिटाता है |
clear() | संग्रह से सभी टिप्पणियों को हटाता है |
get(index: int) → IComment | दिए गए सूचकांक पर IComment लौटाता है |
size() → int | संग्रह में टिप्पणियों की संख्या लौटाता है |
toArray() → IComment[] | गणना तत्वों के साथ startIndex पर शुरू होने वाले टिप्पणियों की उप-सरणी लौटाता है |
toArray(startIndex: int, count: int) → IComment[] | |
asICollection() → List<IComment> | टिप्पणी को सूची के रूप में लौटाता है |
asIEnumerable() → Iterable<IComment> | टिप्पणी को एक Iterable के रूप में लौटाता है |
findCommentByIdx(idx: int) → Optional<IComment> | यदि मौजूद हो तो दिए गए सूचकांक पर टिप्पणी युक्त एक वैकल्पिक लौटाता है, |