Reorder

Reorder(int, IShape)

将形状从集合中移动到指定位置。

public void Reorder(int index, IShape shape)
参数类型描述
indexInt32目标索引。
shapeIShape要移动的形状。

参见


Reorder(int, params IShape[])

将形状从集合中移动到指定位置。形状将按照它们在列表中出现的顺序,从索引开始放置。

public void Reorder(int index, params IShape[] shapes)
参数类型描述
indexInt32目标索引。
shapesIShape[]要移动的形状。

参见