Click or drag to resize
XDL

PBIScale Class

PBI(Pixoneer Base Image)의 축척을 정의한다.
Inheritance Hierarchy

Namespace:  Pixoneer.NXDL.NXMilmap
Assembly:  NXMilmap (in NXMilmap.dll) Version: 1.2.817.72
Syntax
C#
public class PBIScale : RPFScale

The PBIScale type exposes the following members.

Constructors
  NameDescription
Public methodPBIScale
Top
Methods
Fields
  NameDescription
Public fieldnLevel
PBI의 레벨.
Top
Examples
예제 #1:
NXMilmapConfig config = new NXMilmapConfig();
config.Load("X:\\XMilmapConfig(Sample).xml");
PBIScale pbi = new PBIScale();
pbi.strName = "test";
pbi.arrDataSrc.Add("C:\\a.pbi");
config.Add(pbi);
config.Save("X:\\test.xml");
See Also