|
XfnGetResourcePath Method
|
리소스가 존재하는 상위 폴더의 경로를 얻는다.
Namespace: Pixoneer.NXDLAssembly: NXDL (in NXDL.dll) Version: 2.0.3.38
Syntaxpublic static string GetResourcePath()
Return Value
String 리소스 파일 경로.
Example
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