Click or drag to resize
XDL

NXMapLayerUI Class

그리드나 사용자 커서를 보여주거나 숨길 수 있는 컨트롤을 나타낸다. NXMapLayerUI는 사용자 인터페이스 레이어다.
Inheritance Hierarchy

Namespace:  Pixoneer.NXDL.NXMap
Assembly:  NXMap (in NXMap.dll) Version: 1.2.817.72
Syntax
C#
public class NXMapLayerUI : NXMapLayer

The NXMapLayerUI type exposes the following members.

Constructors
  NameDescription
Public methodNXMapLayerUI
NXMapLayerUI 객체를 생성하고 데이터 멤버를 초기화한다. 기본 생성자.
Top
Properties
  NameDescription
Public propertyLayerVisible
레이어의 도시여부를 확인하거나 설정한다.
(Overrides NXMapLayerLayerVisible.)
Public propertyShowCross
레이어에서 십자 표시를 도시하는지 확인하거나 설정한다.
Public propertyShowGrid
레이어에서 그리드 선이 도시되는지 확인하거나 설정한다.
Top
Remarks

Examples
예제 #1:
partial class FormMain
{
    private Pixoneer.NXDL.NXMap.NXMapView nxMapView1;
    private Pixoneer.NXDL.NXMap.NXMapLayerUI nxMapLayerUI1;

    private void InitializeComponent()
    {
        this.nxMapView1 = new Pixoneer.NXDL.NXMap.NXMapView();
        this.nxMapLayerUI1 = new Pixoneer.NXDL.NXMap.NXMapLayerUI();

        this.nxMapLayerUI1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
        this.nxMapLayerUI1.Location = new System.Drawing.Point(20, 40);
        this.nxMapLayerUI1.Name = "nxMapLayerUI1";
        this.nxMapLayerUI1.Size = new System.Drawing.Size(145, 30);
        this.nxMapLayerUI1.TabIndex = 0;
        this.nxMapLayerUI1.Visible = false;
        this.nxMapView1.Controls.Add(this.nxMapLayerUI1);
    } 
}
See Also