Segment.Index operator

説明

Geometry.Segmentsプロパティによって戻されたSegmentCollection内のセグメントのインデックスを表すLongを戻します。

C#構文

// get accessor

Int32 rtn = Segment.Index;

VBScript の例

set oRoot = Application.ActiveProject.ActiveScene.Root

set oObj = oRoot.AddGeometry( "Cube", "MeshSurface" )

set oGeometry = oObj.ActivePrimitive.Geometry

for each oSegment in oGeometry.Segments

	LogMessage "Geometry.Segment[" & oSegment.Index & "].Index = " & oSegment.Index 

next