Example #1
0
        // 버튼 > 기둥 입력
        private void btn_Column_Click(object sender, EventArgs e)
        {
            ReadData();

            CreatePolyLine Command = new CreatePolyLine();

            Command.CreateColumnPolyLine();
        }
Example #2
0
        // 버튼 > 키라인 입력
        private void btn_keyline_Click(object sender, EventArgs e)
        {
            ReadData();

            CreatePolyLine Command = new CreatePolyLine();

            Command.CreateKeyLine();
        }
Example #3
0
        // 버튼 > 벽 입력
        private void btn_Play_Click(object sender, EventArgs e)
        {
            ReadData();

            CreatePolyLine Command = new CreatePolyLine();

            Command.CreateWallPolyLine();
        }