본문으로 건너뛰기

GetRowCount

Overloads

NameDescription
GetRowCount()활성화된 GridStructure의 행 개수를 반환한다.

GetRowCount()

public int GetRowCount()

활성화된 GridStructure의 행 개수를 반환한다.

Returns

TypeDescription
int

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
vizcore3d.Drawing2D.GridStructure.AddGridStructure(3, 2, 210, 297);
int nRowCount = vizcore3d.Drawing2D.GridStructure.GetRowCount(); // 활성화되어 있는 GridStructure의 행(= 3) 개수 반환

}