본문으로 건너뛰기

GetVerticalAlignment

Overloads

NameDescription
GetVerticalAlignment()활성화된 GridStructure에 정의된 수직 방향 정렬 타입을 반환한다.

GetVerticalAlignment()

public GridVerticalAlignment GetVerticalAlignment()

활성화된 GridStructure에 정의된 수직 방향 정렬 타입을 반환한다.

Returns

TypeDescription
GridVerticalAlignment

Examples

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

private void Example()
{
vizcore3d.Drawing2D.GridStructure.AddGridStructure(3, 2, 210, 297);
GridVerticalAlignment alignment = vizcore3d.Drawing2D.GridStructure.GetVerticalAlignment(); // 활성화되어 있는 GridStructure의 수직 방향 정렬 타입 반환

}