SetGridCellHeight
Overloads
| Name | Description |
|---|---|
| SetGridCellHeight(int row, int column, float height) | 활성화된 GridStructure의 row by column에 위치한 GridCell의 높이 길이를 수정한다. |
SetGridCellHeight(int row, int column, float height)
public void SetGridCellHeight(int row, int column, float height)
활성화된 GridStructure의 row by column에 위치한 GridCell의 높이 길이를 수정한다.
Parameters
| Name | Type | Description |
|---|---|---|
| row | int | |
| column | int | |
| height | float |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
vizcore3d.Drawing2D.GridStructure.AddGridStructure(3, 2, 210, 100);
vizcore3d.Drawing2D.GridStructure.SetGridCellHeight(1, 1, 70); // 활성화되어 있는 GridStructure의 1행 1열에 위치한 GridCell의 높이 길이를 70mm로 수정
// 1열의 높이를 50 -> 70mm로 증가
// 전체 GridStructure의 높이가 100 -> 120mm로 증가
}