NextMarker

NextMarker(out int, out int)

递增GraphicsPathIterator到 path 中的下一个标记,并通过 [out] 参数返回开始和停止索引。

public int NextMarker(out int startIndex, out int endIndex)
范围类型描述
startIndexInt32&[out] 提供给此参数的整数引用接收 开始子路径的点的索引。
endIndexInt32&[out] 提供给此参数的整数引用接收 结束 startIndex 指向的子路径的点的索引。

返回值

此标记与下一个标记之间的点数。

也可以看看


NextMarker(GraphicsPath)

这个GraphicsPathIterator对象有一个GraphicsPath与之关联的对象。 此方法递增关联的GraphicsPath到其 path 中的下一个标记,并将当前标记和下一个标记(或路径结尾) 之间包含的所有点复制到第二个GraphicsPath传入参数的对象.

public int NextMarker(GraphicsPath path)
范围类型描述
pathGraphicsPathGraphicsPath点将被复制到的对象。

返回值

此标记与下一个标记之间的点数。

也可以看看