接口 IShapeRange

所有超级接口:
Iterable<IShape>

public interface IShapeRange extends Iterable<IShape>
Represents a shape range, which is a set of shapes on a document.
  • 方法概要

    修饰符和类型
    方法
    说明
    get(int index)
    Returns a single object from a collection.
    get(String index)
    Returns a single object from a collection.
    int
    Returns the number of objects in the collection.
    Groups the shapes in the specified range.

    从接口继承的方法 java.lang.Iterable

    forEach, iterator, spliterator
  • 方法详细资料

    • get

      IShape get(int index)
      Returns a single object from a collection.
      参数:
      index - Required int. The index number for the object.
    • get

      IShape get(String index)
      Returns a single object from a collection.
    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • group

      IShape group()
      Groups the shapes in the specified range.
      返回:
      A Shape object that represents the grouped shape.