Click or drag to resize
XDL

XfnGetResourcePath Method

리소스가 존재하는 상위 폴더의 경로를 얻는다.

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 2.0.3.31
Syntax
C#
public static string GetResourcePath()

Return Value

Type: String
리소스 파일 경로.
Examples
// IO initialize to load image file
XRasterIO RasterIO = new XRasterIO();
String strError = "";
if (RasterIO.Initialize(out strError) == false)
{
    return;
}
String strError;
String strResourcePath = Xfn.GetResourcePath();
XRSLoadFile GeoidFile = RasterIO.LoadFile(strResourcePath + "\\EGM2008-5.xdm", out strError, false, eIOCreateXLDMode.All_NoMsg);
See Also