You are here: Start » FIL.NET » Invoke.CreatePointGrid
Creates a grid of points.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void CreatePointGrid ( Fil.Point2D inPoint, Fil.Anchor2D inAnchor, int inRowCount, int inColumnCount, float inRowStep, float inColumnStep, List<Fil.Point2D> outPointGrid )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint | Fil.Point2D | A starting point of the created grid. | ||
![]() | inAnchor | Fil.Anchor2D | TopLeft | Anchor of the reference point. Default value: TopLeft. | |
![]() | inRowCount | int | <0, +INF> | Number of rows the grid will have. | |
![]() | inColumnCount | int | <0, +INF> | Number of columns the grid will have. | |
![]() | inRowStep | float | <0.0f, INF> | 1.0f | Distance between consecutive rows of the created grid. Default value: 1.0f. |
![]() | inColumnStep | float | <0.0f, INF> | 1.0f | Distance between consecutive columns of the created grid. Default value: 1.0f. |
![]() | outPointGrid | System.Collections.Generic.List<Fil.Point2D> | Created point grid. |