IShapeCollection
अवलोकन
IShapeCollection जावा के लिए Aspose.Slides FOSS में एक इंटरफ़ेस है.
आकृति के संग्रह का प्रतिनिधित्व करता है।.
यह इंटरफ़ेस जावा प्रोग्राम में IShapeCollection ऑब्जेक्ट के साथ काम करने के लिए 25 विधियाँ प्रदान करता है. उपलब्ध विधियों में शामिल हैंः: addAutoShape, addConnector, addPictureFrame, addTable, asICollection, asIEnumerable, clear, get, getParentGroup, indexOf, insertAutoShape, insertConnector, और 7 अतिरिक्त विधियाँ।. सभी सार्वजनिक सदस्य Aspose.Slides FOSS for Java पैकेज को स्थापित करने के बाद किसी भी जावा एप्लिकेशन तक पहुंच सकते हैं. गुण: parentGroup.
गुण
| नाम | प्रकार | Access | विवरण |
|---|---|---|---|
parentGroup | IGroupShape | पढ़िए। | इस संग्रह के लिए मूल समूह आकार प्राप्त करता है, या {@code null} यदि यह संग्रह सीधे एक स्लाइड से संबंधित हो. |
विधिएँ
| Signature | विवरण |
|---|---|
getParentGroup() → IGroupShape | इस संग्रह के लिए मूल समूह आकार प्राप्त करता है, या {@code null} यदि यह संग्रह सीधे एक स्लाइड से संबंधित हो. |
asICollection() → List<IShape> | इस संग्रह को अपरिवर्तनीय {@link List} के रूप में लौटाता है. |
asIEnumerable() → Iterable<IShape> | {@link Iterable} के रूप में इस संग्रह को लौटाता है. |
get(index: int) → IShape | निर्दिष्ट सूचकांक पर आकार प्राप्त करता है।. |
size() → int | संग्रह में आकृतियों की संख्या लौटाता है. |
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double) → IAutoShape | AutoShape नया बनाता है और इसे संग्रह में जोड़ता है. |
addAutoShape(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IAutoShape | AutoShape नया बनाता है और इसे संग्रह में जोड़ता है. |
insertAutoShape(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double) → IAutoShape | एक नया AutoShape बनाता है और इसे निर्दिष्ट सूचकांक में सम्मिलित करता है. |
insertAutoShape(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IAutoShape | एक नया AutoShape बनाता है और इसे निर्दिष्ट सूचकांक में सम्मिलित करता है. |
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double) → IConnector | संग्रह में एक कनेक्टर जोड़ता है।. |
addConnector(shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IConnector | संग्रह में एक कनेक्टर जोड़ता है।. |
insertConnector(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double) → IConnector | एक कनेक्टर बनाता है और उसे निर्दिष्ट सूचकांक पर सम्मिलित करता है. |
insertConnector(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, createFromTemplate: boolean) → IConnector | एक कनेक्टर बनाता है और उसे निर्दिष्ट सूचकांक पर सम्मिलित करता है. |
addPictureFrame(shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage) → IPictureFrame | संग्रह में एक चित्र फ्रेम जोड़ता है।. |
insertPictureFrame(index: int, shapeType: ShapeType, x: double, y: double, width: double, height: double, image: IPPImage) → IPictureFrame | चित्र फ्रेम बनाता है और उसे निर्दिष्ट सूचकांक में सम्मिलित करता है. |
addTable(x: double, y: double, colWidths: double[], rowHeights: double[]) → ITable | संग्रह में एक तालिका जोड़ता है।. |
insertTable(index: int, x: double, y: double, colWidths: double[], rowHeights: double[]) → ITable | एक तालिका बनाता है और निर्दिष्ट सूचकांक में डालता है. |
indexOf(shape: IShape) → int | निर्दिष्ट आकार का सूचकांक लौटाता है. |
toArray() → IShape[] | सभी आकारों को एक सरणी के रूप में लौटाता है. |
toArray(startIndex: int, count: int) → IShape[] | एक सरणी के रूप में आकारों की सीमा लौटाता है. |
reorder(index: int, shape: IShape) | किसी आकार को निर्दिष्ट स्थिति में ले जाता है. |
reorder(index: int, shapes: IShape[]) | निर्दिष्ट स्थिति में कई आकृतियों को स्थानांतरित करता है. |
removeAt(index: int) | निर्दिष्ट सूचकांक पर आकार को हटाता है. |
remove(shape: IShape) | संग्रह से निर्दिष्ट आकार को हटाता है. |
clear() | संग्रह से सभी आकृतियों को हटा देता है।. |