SuperMap.Data.Conversion.xml 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SuperMap.Data.Conversion</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SuperMap.Data.Conversion.CADRasterImageSetting">
  8. <summary>
  9. AutoCAD file export raster image parameter settings class, a parameter that represents a raster image in AutoCAD.
  10. </summary>
  11. </member>
  12. <member name="M:SuperMap.Data.Conversion.CADRasterImageSetting.#ctor">
  13. <summary>
  14. Initializes a new instance of this CADRasterImageSetting class.
  15. </summary>
  16. </member>
  17. <member name="M:SuperMap.Data.Conversion.CADRasterImageSetting.#ctor(SuperMap.Data.Conversion.CADRasterImageSetting)">
  18. <summary>
  19. Creates a new instance of the CADRasterImageSetting object that is identical with the specified DissolveParameter.
  20. </summary>
  21. <param name="rasterImageSetting">The object used to initialize the new instance of CADRasterImageSetting.</param>
  22. </member>
  23. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.SavePath">
  24. <summary>
  25. Gets or sets the raster image picture relative to the AutoCAD file path, is easy to open the AutoCAD file when opening the picture.
  26. </summary>
  27. <value>The default value is null.</value>
  28. </member>
  29. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Orientation">
  30. <summary>
  31. Gets or sets the coordinate position of the lower left corner of the raster image in the AutoCAD file, that is, the display position.
  32. </summary>
  33. <value>The default value is (0,0,0).</value>
  34. </member>
  35. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.RotationAngle">
  36. <summary>
  37. Gets or sets the rotation angle of the raster image in the AutoCAD file.
  38. </summary>
  39. <value>The default value is 0.</value>
  40. </member>
  41. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.PixelWidth">
  42. <summary>
  43. Gets or sets the pixel width of the raster image image.
  44. </summary>
  45. <value>The default value is 1.</value>
  46. </member>
  47. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.PixelHeight">
  48. <summary>
  49. Gets or sets the pixel height of the raster image image.
  50. </summary>
  51. <value>The default value is 1.</value>
  52. </member>
  53. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Width">
  54. <summary>
  55. Gets or sets the width of the raster image, the width of the display in the AutoCAD file (four to the width of the range).
  56. </summary>
  57. <value>The default value is 1.0.</value>
  58. </member>
  59. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Height">
  60. <summary>
  61. Gets or sets the width of the raster image, the width of the display in the AutoCAD file (four to the width of the range).
  62. </summary>
  63. <value>The default value is 1.0.</value>
  64. </member>
  65. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Brightness">
  66. <summary>
  67. Gets or sets the display brightness of the raster image in the AutoCAD file.
  68. </summary>
  69. <value>Between 0-100, the default value is 50.</value>
  70. </member>
  71. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Contrast">
  72. <summary>
  73. Gets or sets the rotation angle of the raster image in the AutoCAD file.
  74. </summary>
  75. <value>Between 0-100, the default value is 50.</value>
  76. </member>
  77. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.Fade">
  78. <summary>
  79. Gets or sets the fade depth of the raster image in the AutoCAD file.Gets or sets the display brightness of the raster image in the AutoCAD file.
  80. </summary>
  81. <value>Between 0-100, the default value is 0.</value>
  82. </member>
  83. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.ClipBoundary">
  84. <summary>
  85. Gets or sets the raster image image to crop the point set (the geographic coordinate point set or the pixel coordinate point set).
  86. </summary>
  87. <value>The default value is null.</value>
  88. </member>
  89. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.IsPixelClip">
  90. <summary>
  91. Gets or sets whether the raster image image is pixel clipping.
  92. </summary>
  93. <value>The default value is false, that is, the geographic coordinates are cropped.</value>
  94. </member>
  95. <member name="P:SuperMap.Data.Conversion.CADRasterImageSetting.IsTransparent">
  96. <summary>
  97. Gets or sets whether the raster image is transparent in AutoCAD and is mainly used for raster images with transparent colors.
  98. </summary>
  99. <value>The default value is false, that is, no transparency is displayed.</value>
  100. </member>
  101. <member name="T:SuperMap.Data.Conversion.CADVersion">
  102. <summary>
  103. This enumeration defines the type constants of AutoCAD in different versions.
  104. </summary>
  105. </member>
  106. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD12">
  107. <summary>
  108. AutoCAD R11-12
  109. </summary>
  110. </member>
  111. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD13">
  112. <summary>
  113. AutoCAD R13
  114. </summary>
  115. </member>
  116. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD14">
  117. <summary>
  118. AutoCAD R14
  119. </summary>
  120. </member>
  121. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD2000">
  122. <summary>
  123. AutoCAD 2000-2002
  124. </summary>
  125. </member>
  126. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD2004">
  127. <summary>
  128. AutoCAD 2004-2006
  129. </summary>
  130. </member>
  131. <member name="F:SuperMap.Data.Conversion.CADVersion.CAD2007">
  132. <summary>
  133. AutoCAD 2007
  134. </summary>
  135. </member>
  136. <member name="T:SuperMap.Data.Conversion.ConversionToolkit">
  137. <summary>
  138. The ConversionToolkit class.
  139. </summary>
  140. </member>
  141. <member name="M:SuperMap.Data.Conversion.ConversionToolkit.#ctor">
  142. <summary>
  143. The default constructor, construct a new ConversionToolkit object.
  144. </summary>
  145. </member>
  146. <member name="M:SuperMap.Data.Conversion.ConversionToolkit.GetImpSupportedFileTypes(System.Boolean)">
  147. <summary>
  148. Return the supported file type when importing data.
  149. </summary>
  150. <param name="bIsFME">Whether is FME type.</param>
  151. <returns>the supported file type array when importing data.</returns>
  152. </member>
  153. <member name="M:SuperMap.Data.Conversion.ConversionToolkit.GetExpSupportedFileTypes(System.Boolean)">
  154. <summary>
  155. Return the supported file type when exporting data.
  156. </summary>
  157. <param name="bIsFME">Whether is FME type.</param>
  158. <returns>the supported file type array when exporting data.</returns>
  159. </member>
  160. <member name="T:SuperMap.Data.Conversion.DataExport">
  161. <summary>
  162. Export data of SuperMap format to other formats.
  163. </summary>
  164. </member>
  165. <member name="M:SuperMap.Data.Conversion.DataExport.#ctor">
  166. <summary>
  167. The default constructor, initializes a new instance of the DataExport class.
  168. </summary>
  169. </member>
  170. <member name="M:SuperMap.Data.Conversion.DataExport.Run">
  171. <summary>
  172. The exported result include the ExportSetting array corresponding with the successful and failure task of exporting.
  173. </summary>
  174. <returns>the export result, including the ExportSetting array that corresponds to the successful and failed tasks.</returns>
  175. </member>
  176. <member name="M:SuperMap.Data.Conversion.DataExport.Dispose">
  177. <summary>
  178. Releases all resources that the objects occupy.
  179. </summary>
  180. </member>
  181. <member name="P:SuperMap.Data.Conversion.DataExport.ExportSettings">
  182. <summary>
  183. Gets or sets a ExportSettings object, used for the setting of export multiple tasks.
  184. </summary>
  185. </member>
  186. <member name="E:SuperMap.Data.Conversion.DataExport.Stepped">
  187. <summary>
  188. The event is trigged when the process bar is activated.
  189. </summary>
  190. </member>
  191. <member name="T:SuperMap.Data.Conversion.DataImport">
  192. <summary>
  193. This class can be used to import external data (file type) to SuperMap format.
  194. </summary>
  195. <remark>Note: If the external projected coordinate system is not our predefined system, the imported projection name is UserDefine.</remark>
  196. </member>
  197. <member name="M:SuperMap.Data.Conversion.DataImport.#ctor">
  198. <summary>
  199. The default constructor, initializes a new instance of the DataImport class.
  200. </summary>
  201. </member>
  202. <member name="M:SuperMap.Data.Conversion.DataImport.Run">
  203. <summary>
  204. Implements the operation of importing dataset, and returns the <see cref="T:SuperMap.Data.Conversion.ImportResult">ImportResult</see> object as the result of import.
  205. </summary>
  206. <returns>The result of import, including the ImportSetting arrays of success to import and the ImportSetting arrays of fail to import.</returns>
  207. </member>
  208. <member name="M:SuperMap.Data.Conversion.DataImport.Dispose">
  209. <summary>
  210. Releases all resources that the objects occupy.
  211. </summary>
  212. </member>
  213. <member name="P:SuperMap.Data.Conversion.DataImport.ImportSettings">
  214. <summary>
  215. Gets or sets the settings for importing data. This method can be used to complete settings of many imports.
  216. </summary>
  217. </member>
  218. <member name="E:SuperMap.Data.Conversion.DataImport.Stepped">
  219. <summary>
  220. Represents the method that handles the import Stepped event.
  221. </summary>
  222. </member>
  223. <member name="T:SuperMap.Data.Conversion.DGNVersion">
  224. <summary>
  225. This enumeration defines the type constants of DGN in different versions.
  226. </summary>
  227. </member>
  228. <member name="F:SuperMap.Data.Conversion.DGNVersion.DGNV7">
  229. <summary>
  230. V7 DGN
  231. </summary>
  232. </member>
  233. <member name="F:SuperMap.Data.Conversion.DGNVersion.DGNV8">
  234. <summary>
  235. V8 DGN
  236. </summary>
  237. </member>
  238. <member name="T:SuperMap.Data.Conversion.ExportFieldModifyInfo">
  239. <summary>
  240. <para>Class for modifying target field information</para>
  241. </summary>
  242. </member>
  243. <member name="M:SuperMap.Data.Conversion.ExportFieldModifyInfo.#ctor">
  244. <summary>
  245. The default constructor constructs a new ExportFieldModifyInfo object.
  246. </summary>
  247. </member>
  248. <member name="M:SuperMap.Data.Conversion.ExportFieldModifyInfo.#ctor(SuperMap.Data.Conversion.ExportFieldModifyInfo)">
  249. <summary>
  250. The copy constructor constructs a new object identical to the given ExportFieldModifyInfo object.
  251. </summary>
  252. </member>
  253. <member name="P:SuperMap.Data.Conversion.ExportFieldModifyInfo.Name">
  254. <summary>
  255. Set or get the name of the target field to be modified.
  256. </summary>
  257. </member>
  258. <member name="P:SuperMap.Data.Conversion.ExportFieldModifyInfo.Type">
  259. <summary>
  260. Set or get the type of the modified target field.
  261. </summary>
  262. </member>
  263. <member name="P:SuperMap.Data.Conversion.ExportFieldModifyInfo.Precision">
  264. <summary>
  265. Set or get the precision of the modified target field.
  266. </summary>
  267. </member>
  268. <member name="P:SuperMap.Data.Conversion.ExportFieldModifyInfo.Scale">
  269. <summary>
  270. Set or get the scale of the modified target field.
  271. </summary>
  272. </member>
  273. <member name="T:SuperMap.Data.Conversion.ExportResult">
  274. <summary>
  275. Provide SucceedSettings and FailedSettings the conversion setting of the tasks both succeed and failed.
  276. </summary>
  277. </member>
  278. <member name="P:SuperMap.Data.Conversion.ExportResult.SucceedSettings">
  279. <summary>
  280. Gets the export settings of the successful tasks.
  281. </summary>
  282. </member>
  283. <member name="P:SuperMap.Data.Conversion.ExportResult.FailedSettings">
  284. <summary>
  285. Gets the Export settings of the failed tasks.The user can get whether the count of the failed tasks is zero to determine whether the import operation is successful or not.
  286. </summary>
  287. </member>
  288. <member name="T:SuperMap.Data.Conversion.ExportSetting">
  289. <summary>
  290. Export the setting information class. This class is the child of the collection object <see cref="T:SuperMap.Data.Conversion.ExportSettings"> ExportSettings</see>)that sets the set information class。The set of information for the exported data can be obtained by the methods and properties provided by this class.
  291. <p id="ignoreFields">
  292. Ignore field description(Related interface<see cref="T:SuperMap.Data.Conversion.ExportSetting#IgnoreFieldNames"> IgnoreFieldNames</see>)
  293. <ul><li>DBF format
  294. <ol><li>The export fails when All user fields are ignored .</li></ol></li><li>SHP format
  295. <ol><li>All the user fields are ignored, because the shp format dbf must have a user field, and is consistent with arcgis, and export system automatically add the default field "Id", and the value is the default value of 0, and SuperMap internal code has processed, to ensure that Export data can be opened.</li></ol></li><li>CAD(DWG/DXF) format
  296. <ol><li>if the setting the XRecordset field is true, export the XRecordset field other than the omitted field, and if it is omitted, the exported field contains the XData field and is exported according to the second XData rule. When the XRecordset flag is false, whether or not the XRecordset field is ignored,the fields do not export;</li><li>When exporting the XData flag to true, export the XData field other than the field, but note the following:
  297. <ul><li style="list-style-type:none;">a.If the remaining XData field does not contain the last four characters of 1001 fields, all XData fields are not exported;</li><li style="list-style-type:none;">b.If the remaining XData field after the ignore contains the last four characters of the field of 1001 but the field value is empty, then the current record of the field name of the same prefix all XData field is not derived;</li><li style="list-style-type:none;">c.If the XData field contains the last four characters of 1001 and the field value is not empty, but does not contain any other XData field of the same prefix, all XData fields with the same prefix are not exported;</li><li style="list-style-type:none;">d.If the remaining XData field contains the last four characters of the 1001 field, and the field value is not empty, and contains the same XData field of the same prefix, but these field values are empty, then the field name is the same all the XData field is not exported</li><li style="list-style-type:none;">e.If the remaining XData field is omitted, the fields with the last four characters are 1010, 1011, 1012, 1013, and the other fields that are grouped are automatically completed. The fields that appear in groups are (1010 1020 1030) (1011 1021 1031) (1012 1022 1032) (1013 1023 1033);</li><li style="list-style-type:none;">f.If the remaining fields do not contain the first field that appears in groups, the XData field other than the field is exported when the derived XData flag is true, but the following aspects need to be noted: whether the segment is contained or not,do not export this group any field;</li><li style="list-style-type:none;">g.If the remaining Ignored fields contain the XRecordset field, the first XRecordset rule is exported;</li><li style="list-style-type:none;">h.When the XData flag is false, the XData field is not exported regardless of whether or not the field is ignored.</li></ul></li><li>All ignored can be normal export;</li><li>Import the default fields generated by cad(EntityHandle EntityType Layer LayerFroze LayerLocked LayerOn Thickness Elevation LineStyle ColorIndex BlockName BlockRotation LineWidth )the system is automatically ignored when exporting;</li><li>When exporting CAD format, SuperMap defines the field name ,and the four characters are for the following characters for the XData field:
  298. <ul><li style="list-style-type:none;">1000</li><li style="list-style-type:none;">1001</li><li style="list-style-type:none;">1003</li><li style="list-style-type:none;">1004</li><li style="list-style-type:none;">1005</li><li style="list-style-type:none;">1010</li><li style="list-style-type:none;">1020</li><li style="list-style-type:none;">1030</li><li style="list-style-type:none;">1011</li><li style="list-style-type:none;">1021</li><li style="list-style-type:none;">1031</li><li style="list-style-type:none;">1012</li><li style="list-style-type:none;">1022</li><li style="list-style-type:none;">1032</li><li style="list-style-type:none;">1013</li><li style="list-style-type:none;">1023</li><li style="list-style-type:none;">1033</li><li style="list-style-type:none;">1040</li><li style="list-style-type:none;">1041</li><li style="list-style-type:none;">1042</li><li style="list-style-type:none;">1070</li><li style="list-style-type:none;">1071</li></ul></li><li>When exporting CAD format, SuperMap defines the XRecordset field to remove the system fields and except for the XData field;</li><li>The Xdata field value of when the suffix is 1004 is a hexadecimal string of 0-254, such as "E5B3" and is an even length, each of which represents a hexadecimal number, and if it is an odd number, the last bit is ignored. If the value is not legitimate, such as "GF" is derived hexadecimal format 00.</li></ol></li><li>E00 format
  299. <ol><li>All ignored can be normal export;</li><li>Import the default field generated by E00( UserID FNODE_ TNODE_ LPOLY_ RPOLY_ LENGTH CoverageID)The system is automatically ignored when exporting.</li></ol></li><li>TAB/MIF format
  300. <ol><li>When all the user fields are ignored, you can normally export, and tab format will automatically add a field FID, field values are -1, and MIF format add a field NDX,and the value is 0, it is dealed with the third party library;</li><li>Importing MIF and Tab are generated by default fields(LineSymbolID LineWidth LineColor FillSymbolID FillBackColor FillForeColor MarkerSymbolID MarkerSize MarkerAngle)The system is automatically ignored when exporting.</li></ol></li><li>KML / KMZ / Telecom Vector / Telecom Building Vector / ModelX does not handle user fields
  301. </li><li>note:
  302. <ol><li>DBU / SHP / DWG / DXF / TAB / MIF format, do not ignore "SmUserID", if ignored after the remaining field contains "UserID", "SmUserID" is not exported, otherwise "SmUserID" into "UserID"</li><li>E00 format, SmUserID is not allowed to export.</li></ol></li></ul></p></summary>
  303. </member>
  304. <member name="M:SuperMap.Data.Conversion.ExportSetting.#ctor">
  305. <summary>
  306. Initializes a new instance of this ExportSetting class.
  307. </summary>
  308. </member>
  309. <member name="M:SuperMap.Data.Conversion.ExportSetting.#ctor(SuperMap.Data.Conversion.ExportSetting)">
  310. <summary>
  311. Initializes a new instance of the ExportSetting class which is identical with the specified ExportSetting object.
  312. </summary>
  313. <param name="exportSetting">The object that is used to initialize a new instance of the ExportSetting.</param>
  314. </member>
  315. <member name="M:SuperMap.Data.Conversion.ExportSetting.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  316. <summary>
  317. Initializes a new instance of the ExportSetting class with the specified parameters.
  318. </summary>
  319. <param name="sourceData">The specified source file.</param>
  320. <param name="targetFilePath">The target file path.</param>
  321. <param name="targetFileType">The type of the data to be exported.</param>
  322. </member>
  323. <member name="M:SuperMap.Data.Conversion.ExportSetting.GetSupportedFileType">
  324. <summary>Gets the data type that the dataset can export.</summary>
  325. </member>
  326. <member name="P:SuperMap.Data.Conversion.ExportSetting.TargetFileCharset">
  327. <summary>
  328. Gets or sets the character set type to export. It is not supported in SuperMap Objects .NET 6R(2012) SP2.
  329. </summary>
  330. </member>
  331. <member name="P:SuperMap.Data.Conversion.ExportSetting.SourceData">
  332. <summary>
  333. Gets or sets the dataset to be exported.
  334. </summary>
  335. <value>The default value is null.</value>
  336. </member>
  337. <member name="P:SuperMap.Data.Conversion.ExportSetting.TargetFilePath">
  338. <summary>
  339. Gets or sets the path of the target file to be exported.
  340. </summary>
  341. <value>The default value is String.Empty.</value>
  342. </member>
  343. <member name="P:SuperMap.Data.Conversion.ExportSetting.IsOverwrite">
  344. <summary>
  345. Gets or sets whether to overwrite if the export path has a file of with the same name. The default is false.
  346. </summary>
  347. <value>The default value is false.</value>
  348. </member>
  349. <member name="P:SuperMap.Data.Conversion.ExportSetting.TargetFileType">
  350. <summary>
  351. Gets or sets the type of the exported file.
  352. </summary>
  353. <value>The default value is FileType.None</value>
  354. </member>
  355. <member name="P:SuperMap.Data.Conversion.ExportSetting.IgnoreFieldNames">
  356. <summary>
  357. Gets or sets the fields to be ignored. Please refer to <see cref="T:SuperMap.Data.Conversion.ExportSetting#ignoreFields">Description of Ignoring Fields</see></summary>
  358. </member>
  359. <member name="P:SuperMap.Data.Conversion.ExportSetting.Filter">
  360. <summary>
  361. Set or get the filtering information of the export target file.
  362. </summary>
  363. <value>The default value is String.Empty.</value>
  364. </member>
  365. <member name="T:SuperMap.Data.Conversion.ExportSettingBMP">
  366. <summary>
  367. The ExportSettingBMP class, which provides the setting of exporting of the BMP data.This class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  368. </summary>
  369. </member>
  370. <member name="M:SuperMap.Data.Conversion.ExportSettingBMP.#ctor">
  371. <summary>
  372. Initializes a new instance of this ExportSettingBMP class.
  373. </summary>
  374. </member>
  375. <member name="M:SuperMap.Data.Conversion.ExportSettingBMP.#ctor(SuperMap.Data.Conversion.ExportSettingBMP)">
  376. <summary>
  377. Initializes a new instance of the ExportSettingBMP class which is identical with the specified ExportSettingBMP object.
  378. </summary>
  379. <param name="exportSettingBMP">The object that is used to initialize a new instance of the ExportSettingBMP.</param>
  380. </member>
  381. <member name="M:SuperMap.Data.Conversion.ExportSettingBMP.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  382. <summary>
  383. Initializes a new instance of the ExportSettingBMP class with the specified parameters.
  384. </summary>
  385. <param name="sourceData">The specified source file.</param>
  386. <param name="targetFilePath">The target file path.</param>
  387. <param name="targetFileType">The target file type.</param>
  388. </member>
  389. <member name="P:SuperMap.Data.Conversion.ExportSettingBMP.WorldFilePath">
  390. <summary>
  391. Gets or sets the path of the exported BMP file.
  392. </summary>
  393. <value>The default value is String.Empty.</value>
  394. </member>
  395. <member name="P:SuperMap.Data.Conversion.ExportSettingBMP.TargetFileType">
  396. <summary>
  397. Gets or sets the type of the exported file.
  398. </summary>
  399. </member>
  400. <member name="T:SuperMap.Data.Conversion.ExportSettingCSV">
  401. <summary>
  402. <para>The ExportSettingCSV class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class. </para>
  403. </summary>
  404. </member>
  405. <member name="M:SuperMap.Data.Conversion.ExportSettingCSV.#ctor">
  406. <summary>
  407. Initializes a new instance of this ExportSettingCSV class.
  408. </summary>
  409. </member>
  410. <member name="M:SuperMap.Data.Conversion.ExportSettingCSV.#ctor(SuperMap.Data.Conversion.ExportSettingCSV)">
  411. <summary>
  412. Initializes a new instance of the importSettingCSV class which is identical with the specified ImportSettingCSV object.
  413. </summary>
  414. <param name="exportSettingCSV">The object that is used to initialize a new instance of the ExportSettingCSV.</param>
  415. </member>
  416. <member name="M:SuperMap.Data.Conversion.ExportSettingCSV.#ctor(System.Object,System.String)">
  417. <summary>
  418. Initializes a new instance of the ImportSettingCSV class according to the specified parameters. It is used to output a dataset to a file.
  419. </summary>
  420. <param name="sourceData">Source dataset.</param>
  421. <param name="targetFilePath">The path of the specified exported file.</param>
  422. </member>
  423. <member name="P:SuperMap.Data.Conversion.ExportSettingCSV.TargetFileType">
  424. <summary>
  425. Gets and sets the type of the exported file.
  426. </summary>
  427. </member>
  428. <member name="P:SuperMap.Data.Conversion.ExportSettingCSV.ExportPointAsWKT">
  429. <summary>
  430. Gets or sets whether the point dataset is exported in WKT form, default value is false, and the export point is not WKT.
  431. </summary>
  432. </member>
  433. <member name="T:SuperMap.Data.Conversion.ExportSettingDWG">
  434. <summary>
  435. The ExportSettingDWG class, which provides the setting of exporting of the AutoCAD DXF data.It inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSeting</see> class.
  436. </summary>
  437. </member>
  438. <member name="M:SuperMap.Data.Conversion.ExportSettingDWG.#ctor">
  439. <summary>
  440. Initializes a new instance of this ExportSettingDWG class.
  441. </summary>
  442. </member>
  443. <member name="M:SuperMap.Data.Conversion.ExportSettingDWG.#ctor(SuperMap.Data.Conversion.ExportSettingDWG)">
  444. <summary>
  445. Initializes a new instance of the ExportSettingDWG class which is identical with the specified ExportSettingDWG object.
  446. </summary>
  447. <param name="exportSettingDWG">The object that is used to initialize a new instance of the ExportSettingDWG.</param>
  448. </member>
  449. <member name="M:SuperMap.Data.Conversion.ExportSettingDWG.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  450. <summary>
  451. Initializes a new instance of the ExportSettingDWG class with the specified parameters.
  452. </summary>
  453. <param name="sourceData">The specified source file.</param>
  454. <param name="targetFilePath">The target file path.</param>
  455. <param name="targetFileType">The type of the data to be exported.</param>
  456. </member>
  457. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.TargetFileType">
  458. <summary>
  459. Gets or sets the type of the exported file.
  460. </summary>
  461. </member>
  462. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.Version">
  463. <summary>
  464. Gets or sets the version of the exported DWG file.
  465. </summary>
  466. </member>
  467. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.ExportingExternalData">
  468. <summary>
  469. Gets or sets whether to export extension fields.
  470. The group code of extension data (1010 1020 1030)(1011 1021 1031)(1012 1022 1032)(1013 1023 1033). If it appears 1010 1011 1012 1013, it will auto-complete its group field.
  471. </summary>
  472. <value>The default value is false.</value>
  473. </member>
  474. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.ExportingBorder">
  475. <summary>
  476. Gets or sets whether to export border when exporting CAD region or rectangle.
  477. </summary>
  478. <value>
  479. The default value is true, that is export border.
  480. </value>
  481. </member>
  482. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.ExportingXRecord">
  483. <summary>
  484. Gets or sets whether to export custom fields and attribute fields as extension records.
  485. </summary>
  486. </member>
  487. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.StyleMappingTableFile">
  488. <summary>
  489. Sets or Gets the export symbol comparison table path
  490. </summary>
  491. </member>
  492. <member name="P:SuperMap.Data.Conversion.ExportSettingDWG.RasterImageSettings">
  493. <summary>
  494. Gets or sets the array of exported DWG raster image settings.
  495. </summary>
  496. </member>
  497. <member name="T:SuperMap.Data.Conversion.ExportSettingDXF">
  498. <summary>
  499. The ExportSettingDXF class, which provides the setting of exporting of the AutoCAD DXF data.It inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSeting</see> class.
  500. </summary>
  501. </member>
  502. <member name="M:SuperMap.Data.Conversion.ExportSettingDXF.#ctor">
  503. <summary>
  504. Initializes a new instance of this ExportSettingDXF class.
  505. </summary>
  506. </member>
  507. <member name="M:SuperMap.Data.Conversion.ExportSettingDXF.#ctor(SuperMap.Data.Conversion.ExportSettingDXF)">
  508. <summary>
  509. Copy constructor, initializes a new instance of the ExportSettingDXF class which is identical with the specified ExportSettingDXF object.
  510. </summary>
  511. <param name="exportSettingDXF">The object that is used to initialize a new instance of the ExportSettingDXF.</param>
  512. </member>
  513. <member name="M:SuperMap.Data.Conversion.ExportSettingDXF.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  514. <summary>
  515. Initializes a new instance of the ExportSettingDXF class with the specified parameters.
  516. </summary>
  517. <param name="sourceData">The specified source file.</param>
  518. <param name="targetFilePath">The target file path.</param>
  519. <param name="targetFileType">The type of the data to be exported.</param>
  520. </member>
  521. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.TargetFileType">
  522. <summary>
  523. Gets or sets the type of the exported file.
  524. </summary>
  525. </member>
  526. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.Version">
  527. <summary>
  528. Gets or sets the version of the exported DXF file.
  529. </summary>
  530. </member>
  531. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.ExportingExternalData">
  532. <summary>
  533. Gets or sets whether to export extension fields.
  534. The group code of extension data (1010 1020 1030)(1011 1021 1031)(1012 1022 1032)(1013 1023 1033). If it appears 1010 1011 1012 1013, it will auto-complete its group field.
  535. </summary>
  536. <value>The default value is false.</value>
  537. </member>
  538. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.ExportingBorder">
  539. <summary>
  540. Gets or sets whether to export border when exporting CAD region or rectangle.
  541. </summary>
  542. <value>
  543. The default value is true, that is export border.
  544. </value>
  545. </member>
  546. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.ExportingXRecord">
  547. <summary>
  548. Gets or sets whether to export custom fields and attribute fields as extension records.
  549. </summary>
  550. </member>
  551. <member name="P:SuperMap.Data.Conversion.ExportSettingDXF.RasterImageSettings">
  552. <summary>
  553. Gets or sets the array of exported DXF raster image settings.
  554. </summary>
  555. </member>
  556. <member name="T:SuperMap.Data.Conversion.ExportSettingE00">
  557. <summary>
  558. <para>The ExportSettingArc/Info E00 class, which provides the setting of exporting of the AutoCAD DXF data.It inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSeting</see> class. </para>
  559. </summary>
  560. </member>
  561. <member name="M:SuperMap.Data.Conversion.ExportSettingE00.#ctor">
  562. <summary>
  563. Initializes a new instance of this ExportSettingE00 class.
  564. </summary>
  565. </member>
  566. <member name="M:SuperMap.Data.Conversion.ExportSettingE00.#ctor(SuperMap.Data.Conversion.ExportSettingE00)">
  567. <summary>
  568. Initializes a new instance of the ExportSettingeE00 class which is identical with the specified ExportSettingE00 object.
  569. </summary>
  570. <param name="exportSettingE00">The object that is used to initialize a new instance of the ExportSettingE00.</param>
  571. </member>
  572. <member name="M:SuperMap.Data.Conversion.ExportSettingE00.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  573. <summary>
  574. Initializes a new instance of the ExportSettingE00 class according to the specified parameters. It is used to output a dataset to a file.
  575. </summary>
  576. <param name="sourceData">Source dataset.</param>
  577. <param name="targetFilePath">The path of the specified exported file.</param>
  578. <param name="targetFileType">Export the file type, here is the default for E00.</param>
  579. </member>
  580. <member name="P:SuperMap.Data.Conversion.ExportSettingE00.ExportingAsDoublePrecision">
  581. <summary>
  582. Gets or sets whether to export E00 in double precision.
  583. </summary>
  584. <value>
  585. The default value is false, that is, E00 is not exported in double precision.
  586. </value>
  587. </member>
  588. <member name="T:SuperMap.Data.Conversion.ExportSettingGeoJson">
  589. <summary>
  590. The ExportSettingGeoJson class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  591. </summary>
  592. </member>
  593. <member name="M:SuperMap.Data.Conversion.ExportSettingGeoJson.#ctor">
  594. <summary>
  595. Initializes a new instance of this ExportSettingGeoJson class.
  596. </summary>
  597. </member>
  598. <member name="M:SuperMap.Data.Conversion.ExportSettingGeoJson.#ctor(SuperMap.Data.Conversion.ExportSettingGeoJson)">
  599. <summary>
  600. Copy constructor, initializes a new instance of the ImportSettingGeoJson class which is identical with the specified ImportSettingGeoJson object.
  601. </summary>
  602. <param name="exportSettingGeoJson">the object used to initialize a new instance of the importSettingGeoJson class.</param>
  603. </member>
  604. <member name="M:SuperMap.Data.Conversion.ExportSettingGeoJson.#ctor(System.Object,System.String)">
  605. <summary>
  606. Initializes a new instance of the ExportSettingGeoJson class according to the specified parameters. It is used to output a dataset to a file.
  607. </summary>
  608. <param name="sourceData">Source dataset.</param>
  609. <param name="targetFilePath">The path of the specified exported file.</param>
  610. </member>
  611. <member name="M:SuperMap.Data.Conversion.ExportSettingGeoJson.#ctor(System.Object[],System.String)">
  612. <summary>
  613. Initializes a new instance of the ExportSettingGeoJson class according to the specified parameters. It is used to output several datasets to a file.
  614. </summary>
  615. <param name="sourceDatas">source dataset array.</param>
  616. <param name="targetFilePath">The path of the specified exported file.</param>
  617. </member>
  618. <member name="P:SuperMap.Data.Conversion.ExportSettingGeoJson.SourceData">
  619. <summary>
  620. Gets or sets the source dataset to be exported.
  621. </summary>
  622. </member>
  623. <member name="P:SuperMap.Data.Conversion.ExportSettingGeoJson.SourceDatas">
  624. <summary>
  625. Gets or sets the source datasets to be exported.
  626. </summary>
  627. </member>
  628. <member name="P:SuperMap.Data.Conversion.ExportSettingGeoJson.TargetFileType">
  629. <summary>
  630. Gets and sets the type of the exported file.
  631. </summary>
  632. </member>
  633. <member name="T:SuperMap.Data.Conversion.ExportSettingGIF">
  634. <summary>
  635. The ExportSettingGIF class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  636. </summary>
  637. </member>
  638. <member name="M:SuperMap.Data.Conversion.ExportSettingGIF.#ctor">
  639. <summary>
  640. Initializes a new instance of this ExportSettingGIF class.
  641. </summary>
  642. </member>
  643. <member name="M:SuperMap.Data.Conversion.ExportSettingGIF.#ctor(SuperMap.Data.Conversion.ExportSettingGIF)">
  644. <summary>
  645. Initializes a new instance of the ExportSettingGIF class which is identical with the specified ExportSettingGIF object.
  646. </summary>
  647. <param name="exportSettingGIF">The object that is used to initialize a new instance of the ExportSettingGIF.</param>
  648. </member>
  649. <member name="M:SuperMap.Data.Conversion.ExportSettingGIF.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  650. <summary>
  651. Initializes a new instance of the ExportSettingGIF class with the specified parameters.
  652. </summary>
  653. <param name="sourceData">The specified source data.</param>
  654. <param name="targetFilePath">The path of the specified exported file.</param>
  655. <param name="targetFileType">The given type of the exported target file.</param>
  656. </member>
  657. <member name="P:SuperMap.Data.Conversion.ExportSettingGIF.TargetFileType">
  658. <summary>
  659. Gets or sets the type of the exported file.
  660. </summary>
  661. </member>
  662. <member name="P:SuperMap.Data.Conversion.ExportSettingGIF.WorldFilePath">
  663. <summary>
  664. Gets or sets the path of the exported BMP file.
  665. </summary>
  666. <value>The default value is String.Empty.</value>
  667. </member>
  668. <member name="T:SuperMap.Data.Conversion.ExportSettingGJB">
  669. <summary>
  670. Parameter setting classes for the exported GJB vector file. from <see cref="T:SuperMap.Data.Conversion.ExportSetting"> ExportSetting</see> 类。
  671. </summary>
  672. </member>
  673. <member name="M:SuperMap.Data.Conversion.ExportSettingGJB.#ctor">
  674. <summary>
  675. The default constructor is to construct a new ExportSettingGJB object.
  676. </summary>
  677. </member>
  678. <member name="M:SuperMap.Data.Conversion.ExportSettingGJB.#ctor(SuperMap.Data.Conversion.ExportSettingGJB)">
  679. <summary>
  680. Copy the constructor and construct a new object that is exactly the same as the given ExportSettingGJB object.
  681. </summary>
  682. <param name="exportSettingGJB">The object used to initialize a new instance of the ExportSettingGJB.</param>
  683. </member>
  684. <member name="M:SuperMap.Data.Conversion.ExportSettingGJB.#ctor(System.Object,System.String)">
  685. <summary>
  686. Construct a new instance of the ExportSettingGJB class based on the specified parameters.An export for a single data set.
  687. </summary>
  688. <param name="sourceData">Oringinal dataset</param>
  689. <param name="targetFilePath">The path to the given export destination file.</param>
  690. </member>
  691. <member name="M:SuperMap.Data.Conversion.ExportSettingGJB.#ctor(System.Object[],System.String)">
  692. <summary>
  693. Construct a new instance of the ExportSettingGJB class based on the specified parameters.Used to export multiple data sets to a file.
  694. </summary>
  695. <param name="sourceDatas">Oringinal dataset array</param>
  696. <param name="targetFilePath">The path to the given export destination file.</param>
  697. </member>
  698. <member name="P:SuperMap.Data.Conversion.ExportSettingGJB.SourceData">
  699. <summary>
  700. Gets or sets the source data set that needs to be exported.
  701. </summary>
  702. </member>
  703. <member name="P:SuperMap.Data.Conversion.ExportSettingGJB.SourceDatas">
  704. <summary>
  705. Gets or sets the set of source data sets that need to be exported.
  706. </summary>
  707. </member>
  708. <member name="P:SuperMap.Data.Conversion.ExportSettingGJB.TargetFileType">
  709. <summary>
  710. Sets the type of the exported target file.
  711. </summary>
  712. </member>
  713. <member name="P:SuperMap.Data.Conversion.ExportSettingGJB.ExportLayer">
  714. <summary>
  715. To get or set the GJB layer you need to export, you must set it to export successfully.
  716. </summary>
  717. </member>
  718. <member name="T:SuperMap.Data.Conversion.ExportSettingJPG">
  719. <summary>
  720. The ExportSettingJPG class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  721. </summary>
  722. </member>
  723. <member name="M:SuperMap.Data.Conversion.ExportSettingJPG.#ctor">
  724. <summary>
  725. Initializes a new instance of this ExportSettingJPG class.
  726. </summary>
  727. </member>
  728. <member name="M:SuperMap.Data.Conversion.ExportSettingJPG.#ctor(SuperMap.Data.Conversion.ExportSettingJPG)">
  729. <summary>
  730. Initializes a new instance of the ExportSettingJPG class which is identical with the specified ExportSettingJPG object.
  731. </summary>
  732. <param name="exportSettingJPG">The object that is used to initialize a new instance of the ExportSettingJPG.</param>
  733. </member>
  734. <member name="M:SuperMap.Data.Conversion.ExportSettingJPG.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  735. <summary>
  736. Initializes a new instance of the ExportSettingJPG class with the specified parameters.
  737. </summary>
  738. <param name="sourceData">The specified source data.</param>
  739. <param name="targetFilePath">The path of the specified exported file.</param>
  740. <param name="targetFileType">The given type of the exported target file.</param>
  741. </member>
  742. <member name="P:SuperMap.Data.Conversion.ExportSettingJPG.TargetFileType">
  743. <summary>
  744. Gets or sets the type of the exported file.
  745. </summary>
  746. </member>
  747. <member name="P:SuperMap.Data.Conversion.ExportSettingJPG.WorldFilePath">
  748. <summary>
  749. Gets or sets the path of the exported BMP file.
  750. </summary>
  751. <value>The default value is String.Empty.</value>
  752. </member>
  753. <member name="P:SuperMap.Data.Conversion.ExportSettingJPG.Compression">
  754. <summary>
  755. Sets or gets the compression rate of the image file in percentage.
  756. </summary>
  757. <value>The default value is 75.</value>
  758. </member>
  759. <member name="T:SuperMap.Data.Conversion.ExportSettingKML">
  760. <summary>
  761. <para>The ExportSettingKML class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class. </para>
  762. <para>Only the dataset with projection WGS 1984 is support to export to KML.</para>
  763. </summary>
  764. </member>
  765. <member name="M:SuperMap.Data.Conversion.ExportSettingKML.#ctor">
  766. <summary>
  767. Initializes a new instance of this ExportSettingKML class.
  768. </summary>
  769. </member>
  770. <member name="M:SuperMap.Data.Conversion.ExportSettingKML.#ctor(SuperMap.Data.Conversion.ExportSettingKML)">
  771. <summary>
  772. Initializes a new instance of the ExportSettingKML class which is identical with the specified ExportSettingKML object.
  773. </summary>
  774. <param name="exportSettingKML">The object that is used to initialize a new instance of the ExportSettingKML.</param>
  775. </member>
  776. <member name="M:SuperMap.Data.Conversion.ExportSettingKML.#ctor(System.Object,System.String)">
  777. <summary>
  778. Initializes a new instance of the class according to the specified parameters. It is used to output a dataset to a file.
  779. </summary>
  780. <param name="sourceData">source dataset.</param>
  781. <param name="targetFilePath">The path of the specified exported file.</param>
  782. </member>
  783. <member name="M:SuperMap.Data.Conversion.ExportSettingKML.#ctor(System.Object[],System.String)">
  784. <summary>
  785. Initializes a new instance of the ExportSettingKML class according to the specified parameters. It is used to output several datasets to a file.
  786. </summary>
  787. <param name="sourceDatas">source dataset array.</param>
  788. <param name="targetFilePath">The path of the specified exported file.</param>
  789. </member>
  790. <member name="P:SuperMap.Data.Conversion.ExportSettingKML.TargetFileType">
  791. <summary>
  792. Gets or sets the type of the exported file.
  793. </summary>
  794. </member>
  795. <member name="P:SuperMap.Data.Conversion.ExportSettingKML.SourceDatas">
  796. <summary>
  797. Gets or sets the source datasets to be exported.
  798. </summary>
  799. </member>
  800. <member name="P:SuperMap.Data.Conversion.ExportSettingKML.SourceData">
  801. <summary>
  802. Gets or sets the source dataset to be exported.
  803. </summary>
  804. </member>
  805. <member name="T:SuperMap.Data.Conversion.ExportSettingKMZ">
  806. <summary>
  807. <para>The ExportSettingKMZ class. The class inherits from ExportSetting class. </para>
  808. <para>Only the dataset with projection WGS 1984 is support to export to KMZ.</para>
  809. </summary>
  810. </member>
  811. <member name="M:SuperMap.Data.Conversion.ExportSettingKMZ.#ctor">
  812. <summary>
  813. Initializes a new instance of this ExportSettingKMZ class.
  814. </summary>
  815. </member>
  816. <member name="M:SuperMap.Data.Conversion.ExportSettingKMZ.#ctor(SuperMap.Data.Conversion.ExportSettingKMZ)">
  817. <summary>
  818. Initializes a new instance of the ExportSettingKMZ class which is identical with the specified ExportSettingKMZ object.
  819. </summary>
  820. <param name="exportSettingKMZ">The object that is used to initialize a new instance of the ExportSettingKMZ.</param>
  821. </member>
  822. <member name="M:SuperMap.Data.Conversion.ExportSettingKMZ.#ctor(System.Object,System.String)">
  823. <summary>
  824. Initializes a new instance of the class according to the specified parameters. It is used to output a dataset to a file.
  825. </summary>
  826. <param name="sourceData">source dataset.</param>
  827. <param name="targetFilePath">The path of the specified exported file.</param>
  828. </member>
  829. <member name="M:SuperMap.Data.Conversion.ExportSettingKMZ.#ctor(System.Object[],System.String)">
  830. <summary>
  831. Initializes a new instance of the ExportSettingKMZ class according to the specified parameters. It is used to output several datasets to a file.
  832. </summary>
  833. <param name="sourceDatas">source dataset array.</param>
  834. <param name="targetFilePath">The path of the specified exported file.</param>
  835. </member>
  836. <member name="P:SuperMap.Data.Conversion.ExportSettingKMZ.SourceData">
  837. <summary>
  838. Gets or sets the source dataset to be exported.
  839. </summary>
  840. </member>
  841. <member name="P:SuperMap.Data.Conversion.ExportSettingKMZ.TargetFileType">
  842. <summary>
  843. Gets or sets the type of the exported file.
  844. </summary>
  845. </member>
  846. <member name="P:SuperMap.Data.Conversion.ExportSettingKMZ.SourceDatas">
  847. <summary>
  848. Gets or sets the source datasets to be exported.
  849. </summary>
  850. </member>
  851. <member name="T:SuperMap.Data.Conversion.ExportSettingModelX">
  852. <summary>
  853. The ExportSettingModelX class.This class inherits from the ExportSetting class.
  854. </summary>
  855. </member>
  856. <member name="M:SuperMap.Data.Conversion.ExportSettingModelX.#ctor">
  857. <summary>
  858. Initializes a new instance of this ExportSettingModelX class.
  859. </summary>
  860. </member>
  861. <member name="M:SuperMap.Data.Conversion.ExportSettingModelX.#ctor(SuperMap.Data.Conversion.ExportSettingModelX)">
  862. <summary>
  863. Initializes a new instance of the ExportSettingModelX class which is identical with the specified ExportSettingModelX object.
  864. </summary>
  865. <param name="exportSettingModelX">The object that is used to initialize a new instance of the ExportSettingModelX.</param>
  866. </member>
  867. <member name="M:SuperMap.Data.Conversion.ExportSettingModelX.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  868. <summary>
  869. Initializes a new instance of the class according to the specified parameters. It is used to output a dataset to a file.
  870. </summary>
  871. <param name="sourceData">source dataset.</param>
  872. <param name="targetFilePath">The path of the specified exported file.</param>
  873. <param name="fileType">The file type specified.</param>
  874. </member>
  875. <member name="P:SuperMap.Data.Conversion.ExportSettingModelX.TargetFileType">
  876. <summary>
  877. Gets or sets the type of the exported file.
  878. </summary>
  879. </member>
  880. <member name="T:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector">
  881. <summary>
  882. <para>Export the structure information class of the Personal Geodatabase format vector dataset. Inherited from the <see cref="T:SuperMap.Data.Conversion.ExportSetting"> ExportSetting</see> class.</para>
  883. </summary>
  884. </member>
  885. <member name="M:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.#ctor">
  886. <summary>
  887. The default constructor constructs a new ExportSettingPersonalGDBVector object.
  888. </summary>
  889. </member>
  890. <member name="M:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.#ctor(SuperMap.Data.Conversion.ExportSettingPersonalGDBVector)">
  891. <summary>
  892. The copy constructor constructs a new object identical to the given ExportSettingPersonalGDBVector object.
  893. </summary>
  894. <param name="exportSettingKML">The object used to initialize a new instance of ExportSettingPersonalGDBVector.</param>
  895. </member>
  896. <member name="M:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.#ctor(System.Object,System.String)">
  897. <summary>
  898. Constructs a new instance of the ExportSettingPersonalGDBVector class based on the specified parameters. Used for the export of a single data set.
  899. </summary>
  900. <param name="sourceData">Source dataset.</param>
  901. <param name="targetFilePath">The path to the given export target file.</param>
  902. </member>
  903. <member name="M:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.#ctor(System.Object[],System.String)">
  904. <summary>
  905. Constructs a new instance of the ExportSettingPersonalGDBVector class based on the specified parameters. Export multiple data sets as one file.
  906. </summary>
  907. <param name="sourceDatas">An array of source datasets.</param>
  908. <param name="targetFilePath">The path to the given export target file.</param>
  909. </member>
  910. <member name="P:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.TargetFileType">
  911. <summary>
  912. Gets or sets the type of the exported object file.
  913. </summary>
  914. </member>
  915. <member name="P:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.SourceDatas">
  916. <summary>
  917. Gets or sets the collection of source datasets that need to be exported.
  918. </summary>
  919. </member>
  920. <member name="P:SuperMap.Data.Conversion.ExportSettingPersonalGDBVector.SourceData">
  921. <summary>
  922. Gets or sets the source dataset that needs to be exported.
  923. </summary>
  924. </member>
  925. <member name="T:SuperMap.Data.Conversion.ExportSettingPNG">
  926. <summary>
  927. The ExportSettingPNG class. This class inherits from the ExportSetting class.
  928. </summary>
  929. </member>
  930. <member name="M:SuperMap.Data.Conversion.ExportSettingPNG.#ctor">
  931. <summary>
  932. Initializes a new instance of this ExportSettingPNG class.
  933. </summary>
  934. </member>
  935. <member name="M:SuperMap.Data.Conversion.ExportSettingPNG.#ctor(SuperMap.Data.Conversion.ExportSettingPNG)">
  936. <summary>
  937. Initializes a new instance of the importSettingPNG class which is identical with the specified ImportSettingPNG object.
  938. </summary>
  939. <param name="exportSettingPNG">The object that is used to initialize a new instance of the ExportSettingPNG.</param>
  940. </member>
  941. <member name="M:SuperMap.Data.Conversion.ExportSettingPNG.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  942. <summary>
  943. Initializes a new instance of the ExportSettingPNG class with the specified parameters.
  944. </summary>
  945. <param name="sourceData">source data.</param>
  946. <param name="targetFilePath">The path of the specified exported file.</param>
  947. <param name="targetFileType">The given type of the exported target file.</param>
  948. </member>
  949. <member name="P:SuperMap.Data.Conversion.ExportSettingPNG.TargetFileType">
  950. <summary>
  951. Gets or sets the type of the exported file.
  952. </summary>
  953. </member>
  954. <member name="P:SuperMap.Data.Conversion.ExportSettingPNG.WorldFilePath">
  955. <summary>
  956. Gets or sets the path of the exported BMP file.
  957. </summary>
  958. <value>The default value is String.Empty.</value>
  959. </member>
  960. <member name="T:SuperMap.Data.Conversion.ExportSettings">
  961. <summary>
  962. The ExportSettings class which is the collection of the <see cref="T:SuperMap.Data.Conversion.ExportSetting"> ExportSetting</see> object. The ExportSetting object is the item of the ExportSettings object.
  963. </summary>
  964. </member>
  965. <member name="M:SuperMap.Data.Conversion.ExportSettings.Add(SuperMap.Data.Conversion.ExportSetting)">
  966. <summary>Add a exportSetting object to ExportSettings.</summary>
  967. <param name="exportSetting">the ExportSetting object to be added.</param>
  968. <returns>Add the index value of the subitem.</returns>
  969. </member>
  970. <member name="M:SuperMap.Data.Conversion.ExportSettings.Insert(System.Int32,SuperMap.Data.Conversion.ExportSetting)">
  971. <summary>Add a exportSetting object to the ExportSettings according to the index value specified.</summary>
  972. <param name="index">the index of the element to be inserted.</param>
  973. <param name="exportSetting">The ExportSetting object to be inserted.</param>
  974. <returns>Boolean, true mean the inserted successfully.</returns>
  975. </member>
  976. <member name="M:SuperMap.Data.Conversion.ExportSettings.Remove(System.Int32)">
  977. <summary>The item removed from ExportSettings at a specific index.</summary>
  978. <param name="index">The index of the TransferWeightFieldInfo to be removed.</param>
  979. <returns>Returns true if successful; Otherwise returns false.</returns>
  980. </member>
  981. <member name="M:SuperMap.Data.Conversion.ExportSettings.Clear">
  982. <summary>Remove all the items from ExportSettings.</summary>
  983. </member>
  984. <member name="M:SuperMap.Data.Conversion.ExportSettings.GetEnumerator">
  985. <summary>
  986. Returns an enumerator that can iterate through the collection.
  987. </summary>
  988. <returns>
  989. </returns>
  990. </member>
  991. <member name="P:SuperMap.Data.Conversion.ExportSettings.Count">
  992. <summary>
  993. Gets the count of the elements in the given ExportSettings.
  994. </summary>
  995. </member>
  996. <member name="P:SuperMap.Data.Conversion.ExportSettings.Item(System.Int32)">
  997. <summary>
  998. Gets the ExportSetting object with specified index in the ExportSettings object.
  999. </summary>
  1000. <param name="index">The specified index, which begins with 0.</param>
  1001. </member>
  1002. <member name="T:SuperMap.Data.Conversion.ExportSettingSIT">
  1003. <summary>
  1004. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  1005. </summary>
  1006. </member>
  1007. <member name="M:SuperMap.Data.Conversion.ExportSettingSIT.#ctor">
  1008. <summary>
  1009. Initializes a new instance of this ExportSettingSIT class.
  1010. </summary>
  1011. </member>
  1012. <member name="M:SuperMap.Data.Conversion.ExportSettingSIT.#ctor(SuperMap.Data.Conversion.ExportSettingSIT)">
  1013. <summary>
  1014. Initializes a new instance of the ExportSettingSIT class which is identical with the specified ExportSettingSIT object.
  1015. </summary>
  1016. <param name="exportSettingSIT">The object used to initialize a new instance of the ExportSettingSIT class.</param>
  1017. </member>
  1018. <member name="M:SuperMap.Data.Conversion.ExportSettingSIT.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  1019. <summary>
  1020. Initializes a new instance of the ExportSettingSIT class with the specified parameters.
  1021. </summary>
  1022. <param name="sourceData">The specified source file.</param>
  1023. <param name="targetFilePath">The target file path.</param>
  1024. <param name="targetFileType">The target file type.</param>
  1025. </member>
  1026. <member name="P:SuperMap.Data.Conversion.ExportSettingSIT.Password">
  1027. <summary>
  1028. Gets or sets the password of the exported SIT file.
  1029. </summary>
  1030. </member>
  1031. <member name="P:SuperMap.Data.Conversion.ExportSettingSIT.TargetFileType">
  1032. <summary>
  1033. Gets or sets the type of the exported file.
  1034. </summary>
  1035. </member>
  1036. <member name="T:SuperMap.Data.Conversion.ExportSettingTAB">
  1037. <summary>
  1038. <para>The MapInfo TAB class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class. </para>
  1039. </summary>
  1040. </member>
  1041. <member name="M:SuperMap.Data.Conversion.ExportSettingTAB.#ctor">
  1042. <summary>
  1043. Initializes a new instance of this ExportSettingTAB class.
  1044. </summary>
  1045. </member>
  1046. <member name="M:SuperMap.Data.Conversion.ExportSettingTAB.#ctor(SuperMap.Data.Conversion.ExportSettingTAB)">
  1047. <summary>
  1048. Initializes a new instance of the ExportSettingTAB class which is identical with the specified ImportSettingCSV object.
  1049. </summary>
  1050. <param name="exportSettingTAB">The object that is used to initialize a new instance of the ExportSettingTAB.</param>
  1051. </member>
  1052. <member name="M:SuperMap.Data.Conversion.ExportSettingTAB.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  1053. <summary>
  1054. Initializes a new instance of the ExportSettingTAB class with the specified parameters.
  1055. </summary>
  1056. <param name="sourceData">Source dataset.</param>
  1057. <param name="targetFilePath">The path of the specified exported file.</param>
  1058. <param name="targetFileType">Gets and sets the type of the exported file.</param>
  1059. </member>
  1060. <member name="P:SuperMap.Data.Conversion.ExportSettingTAB.StyleMappingTableFile">
  1061. <summary>
  1062. Sets or gets the exported style table path.
  1063. </summary>
  1064. </member>
  1065. <member name="T:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector">
  1066. <summary>
  1067. The setting class for <see cref="F:SuperMap.Data.Conversion.FileType.TEMSBuildingVector">TEMSVectorclass</see>.
  1068. </summary>
  1069. </member>
  1070. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.#ctor">
  1071. <summary>
  1072. Initializes a new instance of this ExportSettingTEMSBuildingVectorclass.
  1073. </summary>
  1074. </member>
  1075. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.#ctor(SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector)">
  1076. <summary>
  1077. Initializes a new instance of the ExportSettingTEMSBuildingVector class which is identical with the specified ExportSettingTEMSBuildingVector object.
  1078. </summary>
  1079. <param name="exportSettingTEMSBuildingVector">The object that is used to initialize a new instance of the ExportSettingTEMSBuildingVector.</param>
  1080. </member>
  1081. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.#ctor(System.Object,System.String)">
  1082. <summary>
  1083. Initializes a new instance of the class according to the specified parameters. It is used to output a dataset to a file.
  1084. </summary>
  1085. <param name="sourceData">The specified source dataset.</param>
  1086. <param name="targetFilePath">The specified target file path.</param>
  1087. </member>
  1088. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.#ctor(System.Object[],System.String)">
  1089. <summary>
  1090. Initializes a new instance of the class according to the specified parameters. It is used to output several datasets to a file.
  1091. </summary>
  1092. <param name="sourceData">The specified array of the source dataset.</param>
  1093. <param name="targetFilePath">The specified target file path.</param>
  1094. </member>
  1095. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.TargetFileType">
  1096. <summary>
  1097. Gets or sets the type of the exported file.
  1098. </summary>
  1099. </member>
  1100. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.SourceData">
  1101. <summary>
  1102. gets or sets the dataset array to out put.
  1103. </summary>
  1104. </member>
  1105. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSBuildingVector.SourceDatas">
  1106. <summary>
  1107. gets or sets the outputted dataset array
  1108. </summary>
  1109. </member>
  1110. <member name="T:SuperMap.Data.Conversion.ExportSettingTEMSClutter">
  1111. <summary>
  1112. The setting info class for<see cref="F:SuperMap.Data.Conversion.FileType.TEMSClutter">TEMSClutter</see>class
  1113. </summary>
  1114. </member>
  1115. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSClutter.#ctor">
  1116. <summary>
  1117. Initializes a new instance of this ExportSettingTEMSClutter class.
  1118. </summary>
  1119. </member>
  1120. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSClutter.#ctor(SuperMap.Data.Conversion.ExportSettingTEMSClutter)">
  1121. <summary>
  1122. Initializes a new instance of the ExportSettingTEMSClutter class which is identical with the specified ExportSettingTEMSClutter object.
  1123. </summary>
  1124. <param name="exportSettingTEMSClutter">The object that is used to initialize a new instance of the ExportSettingTEMSClutter class.</param>
  1125. </member>
  1126. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSClutter.#ctor(System.Object,System.String)">
  1127. <summary>
  1128. Initializes a new instance of ExportSettingTEMSClutter according to the parameters.
  1129. </summary>
  1130. <param name="sourceData">The source dataset.</param>
  1131. <param name="targetFilePath">The path of the specified exported file.</param>
  1132. </member>
  1133. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSClutter.TargetFileType">
  1134. <summary>
  1135. Gets or sets the type of the exported file.
  1136. </summary>
  1137. </member>
  1138. <member name="T:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels">
  1139. <summary>
  1140. <para>Export structural information classes for text data in the telecommunications industry. Inherited from the <see cref="T:SuperMap.Data.Conversion.ExportSetting"> ExportSetting</see> class. </para>
  1141. </summary>
  1142. </member>
  1143. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.#ctor">
  1144. <summary>
  1145. The default constructor constructs a new ExportSettingTEMSTextLabels object.
  1146. </summary>
  1147. </member>
  1148. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.#ctor(SuperMap.Data.Conversion.ExportSettingTEMSTextLabels)">
  1149. <summary>
  1150. The copy constructor constructs a new object identical to the given ExportSettingTEMSTextLabels object.
  1151. </summary>
  1152. <param name="exportSettingTEMSText">The object used to initialize a new instance of ExportSettingTEMSTextLabels.</param>
  1153. </member>
  1154. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.#ctor(System.Object,System.String)">
  1155. <summary>
  1156. Constructs a new instance of the ExportSettingTEMSTextLabels class based on the specified parameters. Used for the export of a single data set.
  1157. </summary>
  1158. <param name="sourceData">Source dataset.</param>
  1159. <param name="targetFilePath">The path to the given export target file.</param>
  1160. </member>
  1161. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.#ctor(System.Object[],System.String)">
  1162. <summary>
  1163. Constructs a new instance of the ExportSettingTEMSTextLabels class based on the specified parameters. Export multiple data sets as one file.
  1164. </summary>
  1165. <param name="sourceDatas">An array of source datasets.</param>
  1166. <param name="targetFilePath">An array of source datasets.</param>
  1167. </member>
  1168. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.TargetFileType">
  1169. <summary>
  1170. Gets or sets the type of the exported object file.
  1171. </summary>
  1172. </member>
  1173. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.SourceDatas">
  1174. <summary>
  1175. Gets or sets the collection of source datasets that need to be exported.
  1176. </summary>
  1177. </member>
  1178. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.SourceData">
  1179. <summary>
  1180. Gets or sets the source dataset that needs to be exported.
  1181. </summary>
  1182. </member>
  1183. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSTextLabels.LableName">
  1184. <summary>
  1185. Gets or sets which field needs to be exported to teletext format.
  1186. </summary>
  1187. </member>
  1188. <member name="T:SuperMap.Data.Conversion.ExportSettingTEMSVector">
  1189. <summary>
  1190. The setting class for <see cref="F:SuperMap.Data.Conversion.FileType.TEMSVector">TEMSVectorclass</see>.
  1191. </summary>
  1192. </member>
  1193. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSVector.#ctor">
  1194. <summary>
  1195. Initializes a new instance of this ExportSettingTEMSVector class.
  1196. </summary>
  1197. </member>
  1198. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSVector.#ctor(SuperMap.Data.Conversion.ExportSettingTEMSVector)">
  1199. <summary>
  1200. Initializes a new instance of the ExportSettingTEMSVector class which is identical with the specified ExportSettingTEMSVector object.
  1201. </summary>
  1202. <param name="exportSettingTEMSVector">The object that is used to initialize a new instance of the ExportSettingTEMSVector.</param>
  1203. </member>
  1204. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSVector.#ctor(System.Object,System.String)">
  1205. <summary>
  1206. Initializes a new instance of the class according to the specified parameters. It is used to output a dataset to a file.
  1207. </summary>
  1208. <param name="sourceData">The source dataset.</param>
  1209. <param name="targetFilePath">The path of the specified exported file.</param>
  1210. </member>
  1211. <member name="M:SuperMap.Data.Conversion.ExportSettingTEMSVector.#ctor(System.Object[],System.String)">
  1212. <summary>
  1213. Initializes a new instance of the ExportSettingTEMSVector class according to the specified parameters. It is used to output several datasets to a file.
  1214. </summary>
  1215. <param name="sourceDatas">The source dataset array</param>
  1216. <param name="targetFilePath">The path of the specified exported file.</param>
  1217. </member>
  1218. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSVector.SourceData">
  1219. <summary>
  1220. Gets or sets the source dataset to be exported.
  1221. </summary>
  1222. </member>
  1223. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSVector.TargetFileType">
  1224. <summary>
  1225. Gets or sets the type of the exported file.
  1226. </summary>
  1227. </member>
  1228. <member name="P:SuperMap.Data.Conversion.ExportSettingTEMSVector.SourceDatas">
  1229. <summary>
  1230. Gets or sets the source datasets object to be imported.
  1231. </summary>
  1232. </member>
  1233. <member name="T:SuperMap.Data.Conversion.ExportSettingTIF">
  1234. <summary>
  1235. The ExportSettingTIF class. This class inherits from the <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class.
  1236. </summary>
  1237. </member>
  1238. <member name="M:SuperMap.Data.Conversion.ExportSettingTIF.#ctor">
  1239. <summary>
  1240. Initializes a new instance of this ExportSettingTIF class.
  1241. </summary>
  1242. </member>
  1243. <member name="M:SuperMap.Data.Conversion.ExportSettingTIF.#ctor(SuperMap.Data.Conversion.ExportSettingTIF)">
  1244. <summary>
  1245. Initializes a new instance of the ExportSettingTIF class which is identical with the specified ExportSettingTIF object.
  1246. </summary>
  1247. <param name="exportSettingTIF">the object that is used to initialize a new instance of the ExportSettingTIF class.</param>
  1248. </member>
  1249. <member name="M:SuperMap.Data.Conversion.ExportSettingTIF.#ctor(System.Object,System.String,SuperMap.Data.Conversion.FileType)">
  1250. <summary>
  1251. Initializes a new instance of the ExportSettingTIF class with the specified parameters.
  1252. </summary>
  1253. <param name="sourceData">source data.</param>
  1254. <param name="targetFilePath">The path of the specified exported file.</param>
  1255. <param name="targetFileType">The given type of the exported target file.</param>
  1256. </member>
  1257. <member name="P:SuperMap.Data.Conversion.ExportSettingTIF.TargetFileType">
  1258. <summary>
  1259. Gets or sets the type of the exported file.
  1260. </summary>
  1261. </member>
  1262. <member name="P:SuperMap.Data.Conversion.ExportSettingTIF.ExportAsTile">
  1263. <summary>
  1264. Gets or sets whether to output the map in the block format.
  1265. </summary>
  1266. <value>The default value is false.</value>
  1267. </member>
  1268. <member name="P:SuperMap.Data.Conversion.ExportSettingTIF.ExportingPRJFile">
  1269. <summary>
  1270. It is obsolete. Use the default value true, that is export projection file. Gets or sets whether to export the information of the projection to PRJ file. The default value is true.
  1271. </summary>
  1272. <value>The default value is true.</value>
  1273. </member>
  1274. <member name="P:SuperMap.Data.Conversion.ExportSettingTIF.ExportingGeoTransformFile">
  1275. <summary>
  1276. Sets or gets whether to export the affine transformations information, the default is true, that is export to tfw file, otherwise, the projection information will be exported to tiff file. affine transformations is a mapping between the image coordiante and geographic coordinate.
  1277. </summary>
  1278. <value>The default value is true.</value>
  1279. </member>
  1280. <member name="T:SuperMap.Data.Conversion.ExportSettingVCT">
  1281. <summary>
  1282. <para>The ExportSettingVCT class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> class. </para>
  1283. </summary>
  1284. </member>
  1285. <member name="M:SuperMap.Data.Conversion.ExportSettingVCT.#ctor">
  1286. <summary>
  1287. Initializes a new instance of this ExportSettingVCT class.
  1288. </summary>
  1289. </member>
  1290. <member name="M:SuperMap.Data.Conversion.ExportSettingVCT.#ctor(SuperMap.Data.Conversion.ExportSettingVCT)">
  1291. <summary>
  1292. Initializes a new instance of the ExportSettingVCT class which is identical with the specified ImportSettingCSV object.
  1293. </summary>
  1294. <param name="exportSettingVCT">The object that is used to initialize a new instance of the ExportSettingVCT.</param>
  1295. </member>
  1296. <member name="M:SuperMap.Data.Conversion.ExportSettingVCT.#ctor(System.Object,System.String)">
  1297. <summary>
  1298. Initializes a new instance of the ExportSettingVCT class according to the specified parameters. It is used to output a dataset to a file.
  1299. </summary>
  1300. <param name="sourceData">Source dataset.</param>
  1301. <param name="targetFilePath">The path of the specified exported file.</param>
  1302. </member>
  1303. <member name="M:SuperMap.Data.Conversion.ExportSettingVCT.#ctor(System.Object[],System.String)">
  1304. <summary>
  1305. Initializes a new instance of the ExportSettingVCT class according to the specified parameters. It is used to output several datasets to a file.
  1306. </summary>
  1307. <param name="sourceDatas">source dataset array.</param>
  1308. <param name="targetFilePath">The path of the specified exported file.</param>
  1309. </member>
  1310. <member name="P:SuperMap.Data.Conversion.ExportSettingVCT.SourceData">
  1311. <summary>
  1312. Gets or sets the source dataset to be exported.
  1313. </summary>
  1314. </member>
  1315. <member name="P:SuperMap.Data.Conversion.ExportSettingVCT.SourceDatas">
  1316. <summary>
  1317. Gets or sets the source datasets to be exported.
  1318. </summary>
  1319. </member>
  1320. <member name="P:SuperMap.Data.Conversion.ExportSettingVCT.TargetFileType">
  1321. <summary>
  1322. Gets and sets the type of the exported file.
  1323. </summary>
  1324. </member>
  1325. <member name="T:SuperMap.Data.Conversion.ExportSteppedEventArgs">
  1326. <summary>
  1327. Provides the data for the SteppedEventArgs event.
  1328. </summary>
  1329. </member>
  1330. <member name="M:SuperMap.Data.Conversion.ExportSteppedEventArgs.#ctor(System.Int32,System.Int32,SuperMap.Data.Conversion.ExportSetting,System.Int32,System.Boolean)">
  1331. <summary>
  1332. Initializes a new instance of the ExportSteppedEventArgs class with the given parameters.
  1333. </summary>
  1334. <param name="percent">The percent of the current process have done.</param>
  1335. <param name="subPercent">The percent of the current item.</param>
  1336. <param name="currentTask">The information of the current ongoing sub-operation.</param>
  1337. <param name="count">Gets the count of the items of the tasks.</param>
  1338. <param name="cancel">Whether to cancel all tasks.</param>
  1339. </member>
  1340. <member name="P:SuperMap.Data.Conversion.ExportSteppedEventArgs.TotalPercent">
  1341. <summary>
  1342. Gets the percent of the completed the operation.
  1343. </summary>
  1344. </member>
  1345. <member name="P:SuperMap.Data.Conversion.ExportSteppedEventArgs.SubPercent">
  1346. <summary>
  1347. Gets the percent of the current sub item.
  1348. </summary>
  1349. </member>
  1350. <member name="P:SuperMap.Data.Conversion.ExportSteppedEventArgs.CurrentTask">
  1351. <summary>
  1352. Gets the information of the item of the current task and returns the <see cref="T:SuperMap.Data.Conversion.ExportSetting">ExportSetting</see> object.
  1353. </summary>
  1354. </member>
  1355. <member name="P:SuperMap.Data.Conversion.ExportSteppedEventArgs.Count">
  1356. <summary>
  1357. Gets the count of the items of the tasks.
  1358. </summary>
  1359. </member>
  1360. <member name="P:SuperMap.Data.Conversion.ExportSteppedEventArgs.Cancel">
  1361. <summary>
  1362. Gets or sets whether to cancel all the tasks.
  1363. </summary>
  1364. </member>
  1365. <member name="T:SuperMap.Data.Conversion.ExportSteppedEventHandler">
  1366. <summary>
  1367. Represents the method class that handles the exported stepped event. sender is <see cref="T:SuperMap.Data.Conversion.DataExport">DataExport</see>, and <see cref="T:SuperMap.Data.Conversion.ExportSteppedEventArgs">ExportSteppedEventArgs</see> is inherited from EventArgs with ExportSteppedEventHandler as its delegate.
  1368. </summary>
  1369. <param name="sender">The source event.</param>
  1370. <param name="e">The ExportSteppedEventArgs class.</param>
  1371. </member>
  1372. <member name="T:SuperMap.Data.Conversion.FileType">
  1373. <summary>
  1374. This enumeration defines the transform file type constants.
  1375. </summary>
  1376. </member>
  1377. <member name="F:SuperMap.Data.Conversion.FileType.None">
  1378. <summary>
  1379. Unknown data format
  1380. </summary>
  1381. </member>
  1382. <member name="F:SuperMap.Data.Conversion.FileType.BMP">
  1383. <summary>
  1384. bitmap file, the import result is a image data.
  1385. </summary>
  1386. </member>
  1387. <member name="F:SuperMap.Data.Conversion.FileType.GRIB">
  1388. <summary>
  1389. The import of grib1 and grib2 weather data files results can be multi-band video datasets, single-band video datasets and single-band raster datasets.
  1390. </summary>
  1391. </member>
  1392. <member name="F:SuperMap.Data.Conversion.FileType.PNG">
  1393. <summary>
  1394. Portal network graphic(PNG), the result of imported is a single image data.
  1395. </summary>
  1396. </member>
  1397. <member name="F:SuperMap.Data.Conversion.FileType.TIF">
  1398. <summary>
  1399. Tiff/GeoTIFF file, the import result can be multiband or single-band data.
  1400. </summary>
  1401. </member>
  1402. <member name="F:SuperMap.Data.Conversion.FileType.JPG">
  1403. <summary>
  1404. jpg file, the import result is a image.
  1405. </summary>
  1406. </member>
  1407. <member name="F:SuperMap.Data.Conversion.FileType.GIF">
  1408. <summary>
  1409. jpg file, the import result can be one or multiple dataset.
  1410. </summary>
  1411. </member>
  1412. <member name="F:SuperMap.Data.Conversion.FileType.IMG">
  1413. <summary>
  1414. Erdas Image file, the result can be multi-band or single-band dataset.
  1415. </summary>
  1416. </member>
  1417. <member name="F:SuperMap.Data.Conversion.FileType.GRD">
  1418. <summary>
  1419. Arc/Info ASCII swap file, the import result is a single Grid data.
  1420. </summary>
  1421. </member>
  1422. <member name="F:SuperMap.Data.Conversion.FileType.RAW">
  1423. <summary>
  1424. raw file, the result is a image data.
  1425. </summary>
  1426. </member>
  1427. <member name="F:SuperMap.Data.Conversion.FileType.SIT">
  1428. <summary>
  1429. SuperMap Image Tower, the result is a image data.
  1430. </summary>
  1431. </member>
  1432. <member name="F:SuperMap.Data.Conversion.FileType.SHP">
  1433. <summary>
  1434. ArcView Shape file, the result is a vector dataset.
  1435. </summary>
  1436. </member>
  1437. <member name="F:SuperMap.Data.Conversion.FileType.TAB">
  1438. <summary>
  1439. MapInfo TAB, the output could be the vector data of different types.
  1440. </summary>
  1441. </member>
  1442. <member name="F:SuperMap.Data.Conversion.FileType.MIF">
  1443. <summary>
  1444. MapInfo MIF, the output could be the vector data of different types.
  1445. </summary>
  1446. </member>
  1447. <member name="F:SuperMap.Data.Conversion.FileType.WOR">
  1448. <summary>
  1449. MapInfo workspace file, convert with map, symbol library and data source.
  1450. </summary>
  1451. </member>
  1452. <member name="F:SuperMap.Data.Conversion.FileType.DXF">
  1453. <summary>
  1454. AutoCAD DWG, the output could be the vector data of different types.
  1455. </summary>
  1456. </member>
  1457. <member name="F:SuperMap.Data.Conversion.FileType.DWG">
  1458. <summary>
  1459. AutoCAD DXF, the output could be the vector data of different types.
  1460. </summary>
  1461. </member>
  1462. <member name="F:SuperMap.Data.Conversion.FileType.TEMSVector">
  1463. <summary>
  1464. TEMSVector file.
  1465. </summary>
  1466. </member>
  1467. <member name="F:SuperMap.Data.Conversion.FileType.TEMSTEXT">
  1468. <summary>
  1469. TEMSTextLabels files.
  1470. </summary>
  1471. </member>
  1472. <member name="F:SuperMap.Data.Conversion.FileType.TEMSClutter">
  1473. <summary>
  1474. TEMSClutter file.
  1475. </summary>
  1476. </member>
  1477. <member name="F:SuperMap.Data.Conversion.FileType.TEMSBuildingVector">
  1478. <summary>
  1479. TEMSBuildingVector file.
  1480. </summary>
  1481. </member>
  1482. <member name="F:SuperMap.Data.Conversion.FileType.KML">
  1483. <summary>
  1484. KML file format for Google Earth, the output could be the vector data of different types.
  1485. </summary>
  1486. </member>
  1487. <member name="F:SuperMap.Data.Conversion.FileType.KMZ">
  1488. <summary>
  1489. KMZ file format for Google Earth, the cabinet of KML files,the output could be the vector data of different types.
  1490. </summary>
  1491. </member>
  1492. <member name="F:SuperMap.Data.Conversion.FileType.MAPGIS">
  1493. <summary>
  1494. The file type of MapGIS is wat, wal and wap.
  1495. </summary>
  1496. </member>
  1497. <member name="F:SuperMap.Data.Conversion.FileType.CSV">
  1498. <summary>
  1499. The CSV file.
  1500. </summary>
  1501. </member>
  1502. <member name="F:SuperMap.Data.Conversion.FileType.ENCS57">
  1503. <summary>
  1504. The chart format.
  1505. </summary>
  1506. </member>
  1507. <member name="F:SuperMap.Data.Conversion.FileType.SCV">
  1508. <summary>
  1509. The 3D cache model file.
  1510. </summary>
  1511. </member>
  1512. <member name="F:SuperMap.Data.Conversion.FileType.E00">
  1513. <summary>
  1514. ESRI ArcInfo Export(E00) file, the result is a vector dataset.
  1515. </summary>
  1516. </member>
  1517. <member name="F:SuperMap.Data.Conversion.FileType.GML">
  1518. <summary>
  1519. OpenGIS GML file, the output could be the vector data of different types.
  1520. </summary>
  1521. </member>
  1522. <member name="F:SuperMap.Data.Conversion.FileType.COVERAGE">
  1523. <summary>
  1524. ESRI ArcInfo Coverage file, the result is a vector dataset.
  1525. </summary>
  1526. </member>
  1527. <member name="F:SuperMap.Data.Conversion.FileType.SDEVector">
  1528. <summary>
  1529. ArcSDE vector format, the result is a vector dataset.
  1530. </summary>
  1531. </member>
  1532. <member name="F:SuperMap.Data.Conversion.FileType.SDERaster">
  1533. <summary>
  1534. ArcSDE raster format, the result can be multiband or single-band data.
  1535. </summary>
  1536. </member>
  1537. <member name="F:SuperMap.Data.Conversion.FileType.FileGDBVector">
  1538. <summary>
  1539. ESRI Geodatabase vector format, the result is a vector dataset.
  1540. </summary>
  1541. </member>
  1542. <member name="F:SuperMap.Data.Conversion.FileType.FileGDBRaster">
  1543. <summary>
  1544. ESRI Geodatabase raster format, the result can be multiband or single-band data.
  1545. </summary>
  1546. </member>
  1547. <member name="F:SuperMap.Data.Conversion.FileType.DGN">
  1548. <summary>
  1549. DGN vector format, the output could be the vector data of different types.
  1550. </summary>
  1551. </member>
  1552. <member name="F:SuperMap.Data.Conversion.FileType.VCT">
  1553. <summary>
  1554. VCT vector format. The importing result is the simple dataset.
  1555. </summary>
  1556. </member>
  1557. <member name="F:SuperMap.Data.Conversion.FileType.BIL">
  1558. <summary>
  1559. BIL grid data file.
  1560. </summary>
  1561. </member>
  1562. <member name="F:SuperMap.Data.Conversion.FileType.BIP">
  1563. <summary>
  1564. BIP grid data file.
  1565. </summary>
  1566. </member>
  1567. <member name="F:SuperMap.Data.Conversion.FileType.BSQ">
  1568. <summary>
  1569. BSQ grid data file.
  1570. </summary>
  1571. </member>
  1572. <member name="F:SuperMap.Data.Conversion.FileType.GBDEM">
  1573. <summary>
  1574. National standard DEM transformation data (NSDTF-DEM).
  1575. </summary>
  1576. </member>
  1577. <member name="F:SuperMap.Data.Conversion.FileType.LIDAR">
  1578. <summary>
  1579. Light detection and ranging data format.
  1580. </summary>
  1581. </member>
  1582. <member name="F:SuperMap.Data.Conversion.FileType.ModelOSG">
  1583. <summary>
  1584. OSG/OSGB 3D model format.
  1585. </summary>
  1586. </member>
  1587. <member name="F:SuperMap.Data.Conversion.FileType.ModelX">
  1588. <summary>
  1589. .X 3D model format.
  1590. </summary>
  1591. </member>
  1592. <member name="F:SuperMap.Data.Conversion.FileType.Model3DS">
  1593. <summary>
  1594. Model3DS format data.
  1595. </summary>
  1596. </member>
  1597. <member name="F:SuperMap.Data.Conversion.FileType.ModelDXF">
  1598. <summary>
  1599. ModelDXF format data.
  1600. </summary>
  1601. </member>
  1602. <member name="F:SuperMap.Data.Conversion.FileType.ModelFBX">
  1603. <summary>
  1604. ModelFBX format data.
  1605. </summary>
  1606. </member>
  1607. <member name="F:SuperMap.Data.Conversion.FileType.ModelOpenFlight">
  1608. <summary>
  1609. ModelOpenFlight format data.
  1610. </summary>
  1611. </member>
  1612. <member name="F:SuperMap.Data.Conversion.FileType.USGSDEM">
  1613. <summary>
  1614. United States Geological Survey DEM data.
  1615. </summary>
  1616. </member>
  1617. <member name="F:SuperMap.Data.Conversion.FileType.ArcInfoBinGrid">
  1618. <summary>
  1619. ArcInfo binary grid format data.
  1620. </summary>
  1621. </member>
  1622. <member name="F:SuperMap.Data.Conversion.FileType.MrSID">
  1623. <summary>
  1624. MrSID(Multi-resolution Seamless Image Database) data format.
  1625. </summary>
  1626. </member>
  1627. <member name="F:SuperMap.Data.Conversion.FileType.ECW">
  1628. <summary>
  1629. ECW(Enhanced Compression Wavelet) data format.
  1630. </summary>
  1631. </member>
  1632. <member name="F:SuperMap.Data.Conversion.FileType.DBF">
  1633. <summary>
  1634. Database file, DBF table.
  1635. </summary>
  1636. </member>
  1637. <member name="F:SuperMap.Data.Conversion.FileType.JP2">
  1638. <summary>
  1639. JP2 file.
  1640. </summary>
  1641. </member>
  1642. <member name="F:SuperMap.Data.Conversion.FileType.GJB5068">
  1643. <summary>
  1644. The import results of the GJB military digital map vector data format is for the simple data set.
  1645. </summary>
  1646. </member>
  1647. <member name="F:SuperMap.Data.Conversion.FileType.GeoPackage">
  1648. <summary>
  1649. OGC Geopackage vector data format.
  1650. </summary>
  1651. </member>
  1652. <member name="F:SuperMap.Data.Conversion.FileType.ORANGETAB">
  1653. <summary>
  1654. Orange Tab vector data format.
  1655. </summary>
  1656. </member>
  1657. <member name="F:SuperMap.Data.Conversion.FileType.GEOJSON">
  1658. <summary>
  1659. GeoJson Tab vector data format.
  1660. </summary>
  1661. </member>
  1662. <member name="F:SuperMap.Data.Conversion.FileType.OSM">
  1663. <summary>
  1664. OSM(OpenStreetMap) Data format.
  1665. </summary>
  1666. </member>
  1667.          <member name="F:SuperMap.Data.Conversion.FileType.VRT">
  1668.              <summary>
  1669.              GDAL Virtual data format.
  1670.              </summary>
  1671.          </member>
  1672.          <member name="F:SuperMap.Data.Conversion.FileType.PersonalGDBVector">
  1673.              <summary>
  1674.              Personal Geodatabase (MDB) data format.
  1675.              </summary>
  1676.          </member><member name="T:SuperMap.Data.Conversion.GJBExportLayerSetting"><summary>
  1677. The military digital map vector data (GJB) file exports the parameters of the layer to set the class, and one parameter represents a layer in GJB.
  1678. </summary></member><member name="M:SuperMap.Data.Conversion.GJBExportLayerSetting.#ctor"><summary>
  1679. The default constructor, constructs a new GJBExportLayerSetting object.
  1680. </summary></member><member name="M:SuperMap.Data.Conversion.GJBExportLayerSetting.#ctor(SuperMap.Data.Conversion.GJBExportLayerSetting)"><summary>
  1681. Copy the constructor and construct a new object that is exactly the same as the given GJBExportLayerSetting object.
  1682. </summary><param name="exportLayerSetting">Used to initialize a new instance of GJBExportLayerSetting.</param></member><member name="P:SuperMap.Data.Conversion.GJBExportLayerSetting.LayerType"><summary>
  1683. Gets or sets the type of the GJB export layer.
  1684. </summary><value>GJB layer type.</value></member><member name="P:SuperMap.Data.Conversion.GJBExportLayerSetting.DtNamesBeLayer"><summary>
  1685. Gets or sets the name of the data set exported to that layer.
  1686. </summary><value>Data set name array, so that multiple data sets are exported to GJB one layer.</value></member><member name="T:SuperMap.Data.Conversion.GJBLayerType"><summary>
  1687. This enumeration defines the military digital map vector data (GJB) to export the layer type constants.
  1688. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_A"><summary>
  1689. Measure the control point layer.
  1690. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_B"><summary>
  1691. Layer of industrial and agricultural social and cultural facilities.
  1692. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_C"><summary>
  1693. Residential and ancillary facilities.
  1694. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_D"><summary>
  1695. Land transport layer.
  1696. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_E"><summary>
  1697. Pipeline layer.
  1698. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_F"><summary>
  1699. Water/land layers.
  1700. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_G"><summary>
  1701. Bottom layer and bottom layer.
  1702. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_H"><summary>
  1703. Rocks, sunken ships, barrier layers.
  1704. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_I"><summary>
  1705. Hydrological layer.
  1706. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_J"><summary>
  1707. Land topography and soil layers.
  1708. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_K"><summary>
  1709. State and political zone layer.
  1710. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_L"><summary>
  1711. Vegetation layer.
  1712. <para>Only support points, lines, and faces are exported to this layer.</para></summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_M"><summary>
  1713. Layer of geomagnetic elements.
  1714. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_N"><summary>
  1715. Navigation equipment and channel layer.
  1716. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_O"><summary>
  1717. Marine zone boundary layer.
  1718. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_P"><summary>
  1719. Air factor layer.
  1720. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_Q"><summary>
  1721. Military zone layer.
  1722. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_R"><summary>
  1723. Note the layer.
  1724. </summary></member><member name="F:SuperMap.Data.Conversion.GJBLayerType.GJB_S"><summary>
  1725. Metadata layer.
  1726. </summary></member><member name="T:SuperMap.Data.Conversion.GMLVersion"><summary>
  1727. This enumeration defines the GML transform file type constants.
  1728. </summary></member><member name="F:SuperMap.Data.Conversion.GMLVersion.GML"><summary>
  1729. GML (Geography Markup Language), the highest version.
  1730. <para>Support import GML file to point, line, region, text and CAD dataset.</para></summary></member><member name="F:SuperMap.Data.Conversion.GMLVersion.GMLSF"><summary>
  1731. GML SF-0 (Geography Markup Language Simple Features Level SF-0 Profile).
  1732. <para>Read the file in GML Simple Features Profile Format.</para><para>Support import GML file to point, line, region, text and CAD dataset.</para></summary></member><member name="F:SuperMap.Data.Conversion.GMLVersion.GML212"><summary>
  1733. GML (Geography Markup Language), the lowest version.
  1734. <para>Support import GML file to point, line, region, text and CAD dataset.</para><para>Note: Only can open the file created by GML v2.1.2, text file must be created by fixed mode.</para></summary></member><member name="T:SuperMap.Data.Conversion.IgnoreMode"><summary>
  1735. This class defines the constants representing the color IgnoreMode.
  1736. </summary></member><member name="F:SuperMap.Data.Conversion.IgnoreMode.IgnoreNone"><summary>
  1737. Do not ignore color values.
  1738. </summary></member><member name="F:SuperMap.Data.Conversion.IgnoreMode.IgnoreSignal"><summary>
  1739. Ignore by value, ignore certain color values.
  1740. </summary></member><member name="F:SuperMap.Data.Conversion.IgnoreMode.IgnoreBorder"><summary>
  1741. Ignore by scanning line.
  1742. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfo"><summary>
  1743. The base class of importing data information.All the realization class inherit from the class. This class provides many properties for the importing information of different type, such as grid or vector.
  1744. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfo.#ctor"><summary></summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfo.TargetName"><summary>
  1745. Gets or sets the name of the target dataset. The default is the name of the source file.
  1746. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfo.Bounds"><summary>
  1747. Gets the geographic bounds that contain all the elements of the import data.
  1748. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfo.SourceFile"><summary>
  1749. Gets the source file of the current dataset information.
  1750. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfo.SourceCharset"><summary>
  1751. Get the original encoding of the imported data, and can not get to return to Default (currently supports SHP, TAB, MIF).
  1752. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoAiBinGrid"><summary>
  1753. ArcInfo binary grid data importing.
  1754. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoAiBinGrid.Width"><summary>
  1755. Gets the width of the image data.
  1756. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoAiBinGrid.Height"><summary>
  1757. Gets the height of the image data.
  1758. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoAiBinGrid.PixelFormat"><summary>
  1759. Gets the pixel format of the image data.
  1760. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoAiBinGrid.Resolution"><summary>
  1761. Gets the resolution of the image data.
  1762. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoBIL"><summary>
  1763. The ImportDataInfoBIL class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1764. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIL.Width"><summary>
  1765. Gets the width of the BIL grid data in pixels.
  1766. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIL.Height"><summary>
  1767. Gets the height of the BIL grid data in pixels.
  1768. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIL.PixelFormat"><summary>
  1769. Gets the pixel format of the BIL grid data.
  1770. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIL.Resolution"><summary>
  1771. Gets the resolution of the BIL gird data. Unit: Pixels per meter.
  1772. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoBIP"><summary>
  1773. The ImportDataInfoBIP class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1774. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIP.Width"><summary>
  1775. Gets the width of the BIP grid data in pixels.
  1776. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIP.Height"><summary>
  1777. Gets the height of the BIP grid data in pixels.
  1778. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIP.PixelFormat"><summary>
  1779. Gets the pixel format of the BIP grid data.
  1780. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBIP.Resolution"><summary>
  1781. Gets the resolution of the BIP gird data. Unit: Pixels per meter.
  1782. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoBMP"><summary>
  1783. The ImportDataInfoBMP class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1784. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBMP.Width"><summary>
  1785. Gets the width of the image data in pixels.
  1786. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBMP.Height"><summary>
  1787. Gets the height of the image data in pixels.
  1788. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBMP.PixelFormat"><summary>
  1789. Gets the pixel format of the image data.
  1790. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBMP.Resolution"><summary>
  1791. Gets the resolution of the image data in pixels.
  1792. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoBSQ"><summary>
  1793. The ImportDataInfoBSQ class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1794. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBSQ.Width"><summary>
  1795. Gets the width of the BSQ grid data in pixels.
  1796. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBSQ.Height"><summary>
  1797. Gets the height of the BSQ grid data in pixels.
  1798. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBSQ.PixelFormat"><summary>
  1799. Gets the pixel format of the BSQ grid data.
  1800. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoBSQ.Resolution"><summary>
  1801. Gets the resolution of the BSQ gird data. Unit: Pixels per meter.
  1802. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoCoverage"><summary>
  1803. The ImportDataInfoCoverage class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1804. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.GetSourceFieldInfos"><summary>
  1805. Gets the field information of the imported source Coverage file data.
  1806. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.GetTargetFieldInfos"><summary>
  1807. Gets the target field info of the data.
  1808. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1809. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source Coverage file.
  1810. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.ChangeFieldName(System.String,System.String)"><summary>
  1811. Modifies the field name of the specified field.
  1812. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.SetImportFieldState(System.String,System.Boolean)"><summary>
  1813. Sets whether the specified field will be imported.
  1814. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCoverage.ExchangeFieldOrder(System.String,System.String)"><summary>
  1815. the index positions of the specified two elements of the exchange field info collection
  1816. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoCoverage.DatasetType"><summary>
  1817. Gets the type of the vector dataset.
  1818. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoCoverage.RecordCount"><summary>
  1819. Gets the count of the features of the imported vector dataset.
  1820. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoCSV"><summary>
  1821. The ImportDataInfoCSV class, which provides the information of the imported CSV data. This class is inherited from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1822. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.GetTargetFieldInfos"><summary>
  1823. Gets the target field info of the data.
  1824. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.SetTargetFieldInfos(SuperMap.Data.FieldInfos)"><summary>
  1825. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source CSV file.
  1826. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.GetSourceFieldInfos"><summary>
  1827. Gets the field information of the source CSV file data to import.
  1828. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.ChangeFieldName(System.String,System.String)"><summary>
  1829. Modifies the field name of the specified field.
  1830. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, true if the field name updated successfully,otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.ChangeFieldType(System.String,SuperMap.Data.FieldType)"><summary>
  1831. Modifies the field type of the specified field.
  1832. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldType">the new field type of the specified field.</param><returns></returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.SetImportFieldState(System.String,System.Boolean)"><summary>
  1833. Sets whether the specified field will be imported.
  1834. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.GetImportFieldState(System.String)"><summary>
  1835. Gets whether the specified field will be imported.
  1836. </summary><param name="oldFieldName">the original field name of the specified field.</param><returns>A boolean, true if import the specified field, otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoCSV.ExchangeFieldOrder(System.String,System.String)"><summary>
  1837. the index positions of the specified two fields of the exchange field info collection
  1838. </summary><param name="fieldName1">the name of field to switch order.</param><param name="fieldName2">the name of field to switch order.</param><returns>returns true if successful; otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoCSV.DatasetType"><summary>
  1839. Gets or sets the type of the imported target dataset. After importing a CSV file, the target dataset can only be a point dataset, or a tabular dataset.
  1840. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoCSV.RecordCount"><summary>
  1841. Gets the number of features in the target dataset after imported. At present, the property value is always 0.
  1842. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoDBF"><summary>
  1843. The ImportDataInfoDBF class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1844. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDBF.GetTargetFieldInfos"><summary>
  1845. Gets the target field info of the data.
  1846. </summary><returns>The field info of the data. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDBF.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1847. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source DBF file.
  1848. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDBF.GetSourceFieldInfos"><summary>
  1849. Gets the information of fields of the source data.
  1850. </summary><returns>The information of the original fields of the data.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDBF.DatasetType"><summary>
  1851. Gets the type of the source vector dataset.
  1852. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDBF.RecordCount"><summary>
  1853. Gets the count of the features of the imported vector dataset.
  1854. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoDGN"><summary>
  1855. The ImportDataInfoDGN class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1856. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.GetSourceFieldInfos"><summary>
  1857. Gets the field information of the imported source DGN file data.
  1858. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.GetTargetFieldInfos"><summary>
  1859. Gets the target field info of the data.
  1860. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1861. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source DNG file.
  1862. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.ChangeFieldName(System.String,System.String)"><summary>
  1863. Modifies the field name of the specified field.
  1864. </summary><param name="oldFieldName">The original field name of the specified field.</param><param name="newFieldName">The new field name of the specified field.</param><returns>A boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.SetImportFieldState(System.String,System.Boolean)"><summary>
  1865. Sets whether the specified field will be imported.
  1866. </summary><param name="oldFieldName">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>A boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.GetImportFieldState(System.String)"><summary>
  1867. Gets whether the specified field will be imported.
  1868. </summary><param name="fieldName">The specified name of the field.</param><returns>A boolean, true if import the specified field, otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDGN.ExchangeFieldOrder(System.String,System.String)"><summary>
  1869. The index positions of the specified two elements of the exchange field info collection
  1870. </summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>A boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDGN.DatasetType"><summary>
  1871. Gets the type of the vector dataset.
  1872. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDGN.RecordCount"><summary>
  1873. Gets the count of the features of the imported vector dataset.
  1874. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoDWG"><summary>
  1875. The ImportDataInfoDWG class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1876. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.GetSourceFieldInfos"><summary>
  1877. Gets the information of fields of the source data.
  1878. </summary><returns>The information of the original fields of the data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.GetTargetFieldInfos"><summary>
  1879. Gets the target field info of the data.
  1880. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1881. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source DWG file.
  1882. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.ChangeFieldName(System.String,System.String)"><summary>Modifies the name of the field.</summary><param name="oldName">The original name.</param><param name="newName">The new name.</param><returns>Whether the conversion was successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldname">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>True, if the conversion is successful; Otherwise,false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.GetImportFieldState(System.String)"><summary>
  1883. Gets and imports the specified field.
  1884. </summary><param name="fieldName">The specified name of the field.</param><returns>A Boolean value, true indicates that the field needs to import, and false indicates that the field doesn't need to import.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDWG.ExchangeFieldOrder(System.String,System.String)"><summary>The index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDWG.DatasetType"><summary>
  1885. Gets the type of the source vector dataset.
  1886. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDWG.RecordCount"><summary>
  1887. Gets the count of the features of the imported vector dataset.
  1888. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDWG.LayerNameField"><summary>
  1889. Gets or sets the the field name of LayerNameField.
  1890. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDWG.ElevationNameField"><summary>
  1891. Gets or sets the the field name of ElevationNameField.
  1892. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoDXF"><summary>
  1893. The ImportDataInfoDXF class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1894. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.GetSourceFieldInfos"><summary>
  1895. Gets the information of fields of the source data.
  1896. </summary><returns>The information of the original fields of the data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.GetTargetFieldInfos"><summary>
  1897. Gets the target field info of the data.
  1898. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1899. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source DXF file.
  1900. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.ChangeFieldName(System.String,System.String)"><summary>Modifies the name of the field.</summary><param name="oldName">The original name.</param><param name="newName">The new name.</param><returns>Whether the conversion was successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldname">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.GetImportFieldState(System.String)"><summary>
  1901. Gets and imports the specified field.
  1902. </summary><param name="fieldName">The specified name of the field.</param><returns>A Boolean value, true indicates that the field needs to import, and false indicates that the field doesn't need to import.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoDXF.ExchangeFieldOrder(System.String,System.String)"><summary>The index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDXF.DatasetType"><summary>
  1903. Gets the type of the vector dataset.
  1904. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDXF.RecordCount"><summary>
  1905. Gets the count of the features of the imported vector dataset.
  1906. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDXF.LayerNameField"><summary>
  1907. Gets or sets the the field name of LayerNameField.
  1908. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoDXF.ElevationNameField"><summary>
  1909. Gets or sets the the field name of ElevationNameField.
  1910. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoE00"><summary>
  1911. The ImportDataInfoE00 class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1912. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.GetSourceFieldInfos"><summary>
  1913. Gets the field information of the imported source E00 file data.
  1914. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.GetTargetFieldInfos"><summary>
  1915. Gets the target field info of the data.
  1916. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1917. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source E00 file.
  1918. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.ChangeFieldName(System.String,System.String)"><summary>
  1919. Modifies the field name of the specified field.
  1920. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.SetImportFieldState(System.String,System.Boolean)"><summary>
  1921. Sets whether the specified field will be imported.
  1922. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoE00.ExchangeFieldOrder(System.String,System.String)"><summary>
  1923. the index positions of the specified two elements of the exchange field info collection
  1924. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoE00.DatasetType"><summary>
  1925. Gets the type of the vector dataset.
  1926. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoE00.RecordCount"><summary>
  1927. Gets the count of the features of the imported vector dataset.
  1928. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoECW"><summary>
  1929. The ImportDataInfoECW class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1930. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoECW.Width"><summary>
  1931. Gets the width of the image data in pixels.
  1932. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoECW.Height"><summary>
  1933. Gets the height of the image data in pixels.
  1934. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoECW.PixelFormat"><summary>
  1935. Gets the pixel format of the image data.
  1936. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoECW.Resolution"><summary>
  1937. Gets the resolution of the image data in pixels.
  1938. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector"><summary>
  1939. The ImportDataInfoFileGDBVector class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1940. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.GetSourceFieldInfos"><summary>
  1941. Gets the field information of the imported source GDB file data.
  1942. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.GetTargetFieldInfos"><summary>
  1943. Gets the target field info of the data.
  1944. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1945. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source GDBVector file.
  1946. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.ChangeFieldName(System.String,System.String)"><summary>
  1947. Modifies the field name of the specified field.
  1948. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.SetImportFieldState(System.String,System.Boolean)"><summary>
  1949. Sets whether the specified field will be imported.
  1950. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.ExchangeFieldOrder(System.String,System.String)"><summary>
  1951. the index positions of the specified two elements of the exchange field info collection
  1952. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.DatasetType"><summary>
  1953. Gets the type of the vector dataset.
  1954. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoFileGDBVector.RecordCount"><summary>
  1955. Gets the count of the features of the imported vector dataset.
  1956. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGBDEM"><summary>
  1957. The ImportDataInfoGBDEM class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo"> ImportDataInfo</see> class.
  1958. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGBDEM.Width"><summary>
  1959. Gets the width of the of NSDTF-DEM data, in pixels.
  1960. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGBDEM.Height"><summary>
  1961. Gets the height of the of NSDTF-DEM data, in pixels.
  1962. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGBDEM.PixelFormat"><summary>
  1963. Gets the pixel format of NSDTF-DEM data.
  1964. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGBDEM.Resolution"><summary>
  1965. Gets the resolution of the NSDTF-DEM data. Unit: pixels per meter.
  1966. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGeoJson"><summary>
  1967. The ImportDataInfoGeoJson class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1968. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGeoJson.GetSourceFieldInfos"><summary>
  1969. Gets the information of fields of the source data.
  1970. </summary><returns>The field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGeoJson.GetTargetFieldInfos"><summary>
  1971. Gets the target field info of the data.
  1972. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGeoJson.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1973. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source GeoJson file.
  1974. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGeoJson.DatasetType"><summary>
  1975. Gets the type of the vector dataset.
  1976. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGeoJson.RecordCount"><summary>
  1977. Gets the count of the features of the imported vector dataset.
  1978. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGIF"><summary>
  1979. The ImportDataInfoBMP class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1980. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGIF.Width"><summary>
  1981. Gets the width of the image data in pixels.
  1982. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGIF.Height"><summary>
  1983. Gets the height of the image data in pixels.
  1984. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGIF.PixelFormat"><summary>
  1985. Gets the pixel format of the image data.
  1986. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGIF.Resolution"><summary>
  1987. Gets the resolution of the image data in pixels.
  1988. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGJB"><summary>
  1989. The ImportDataInfoGJB class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  1990. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.GetSourceFieldInfos"><summary>
  1991. Gets the field information of the imported source GJB file data.
  1992. </summary><returns>The field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.GetTargetFieldInfos"><summary>
  1993. Gets the target field info of the data.
  1994. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  1995. Sets the target field info of the data.
  1996. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.ChangeFieldName(System.String,System.String)"><summary>
  1997. Modifies the field name of the specified field.
  1998. </summary><param name="oldFieldName">The original field name of the specified field.</param><param name="newFieldName">The new field name of the specified field.</param><returns>A boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.SetImportFieldState(System.String,System.Boolean)"><summary>
  1999. Sets whether the specified field will be imported.
  2000. </summary><param name="oldFieldName">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>A boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.GetImportFieldState(System.String)"><summary>
  2001. Gets whether the specified field will be imported.
  2002. </summary><param name="fieldName">The specified name of the field.</param><returns>The boolean value denotes whether or not to import, and the field needs to be imported to return true, otherwise it returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGJB.ExchangeFieldOrder(System.String,System.String)"><summary>
  2003. The index positions of the specified two elements of the exchange field info collection
  2004. </summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>A boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGJB.DatasetType"><summary>
  2005. Gets the type of the vector dataset.
  2006. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGJB.RecordCount"><summary>
  2007. Gets the count of the features of the imported vector dataset.
  2008. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGML"><summary>
  2009. The ImportDataInfoGML class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2010. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.GetSourceFieldInfos"><summary>
  2011. Gets the field information of the imported source GML file data.
  2012. </summary><returns>The field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.GetTargetFieldInfos"><summary>
  2013. Gets the target field info of the data.
  2014. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2015. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source GML file.
  2016. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.ChangeFieldName(System.String,System.String)"><summary>
  2017. Modifies the field name of the specified field.
  2018. </summary><param name="oldFieldName">The original field name of the specified field.</param><param name="newFieldName">The new field name of the specified field.</param><returns>A boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.SetImportFieldState(System.String,System.Boolean)"><summary>
  2019. Sets whether the specified field will be imported.
  2020. </summary><param name="oldFieldName">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>A boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGML.ExchangeFieldOrder(System.String,System.String)"><summary>
  2021. The index positions of the specified two elements of the exchange field info collection
  2022. </summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>A boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGML.DatasetType"><summary>
  2023. Gets the type of the vector dataset.
  2024. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGML.RecordCount"><summary>
  2025. Gets the count of the features of the imported vector dataset.
  2026. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGPKG"><summary>
  2027. The ImportDataInfo OGC Geopackage class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2028. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.GetSourceFieldInfos"><summary>
  2029. Gets the field information of the imported source Geopackage file data.
  2030. </summary><returns>The field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.GetTargetFieldInfos"><summary>
  2031. Gets the target field info of the data.
  2032. </summary><returns>The field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2033. Sets the target field info of the data.
  2034. </summary><param name="fieldinfos">The field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.ChangeFieldName(System.String,System.String)"><summary>
  2035. Modifies the field name of the specified field.
  2036. </summary><param name="oldFieldName">The original field name of the specified field.</param><param name="newFieldName">The new field name of the specified field.</param><returns>A boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.SetImportFieldState(System.String,System.Boolean)"><summary>
  2037. Sets whether the specified field will be imported.
  2038. </summary><param name="oldFieldName">The specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>A boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoGPKG.ExchangeFieldOrder(System.String,System.String)"><summary>
  2039. The index positions of the specified two elements of the exchange field info collection
  2040. </summary><param name="fieldName1">The field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>A boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGPKG.DatasetType"><summary>
  2041. Gets the type of the vector dataset.
  2042. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGPKG.RecordCount"><summary>
  2043. Gets the count of the features of the imported vector dataset.
  2044. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGRD"><summary>
  2045. The ImportDataInfoGRD class. This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2046. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRD.Width"><summary>
  2047. Gets the width of the image dataset. The unit is pixel.
  2048. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRD.Height"><summary>
  2049. Gets the height of the raster data in pixels.
  2050. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRD.PixelFormat"><summary>
  2051. Gets the pixel format of the raster data.
  2052. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRD.Resolution"><summary>
  2053. Gets the resolution of the raster data in pixels.
  2054. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoGRIB"><summary>
  2055. The ImportDataInfoGrib1 and ImportDataInfoGrib2 class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2056. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRIB.Width"><summary>
  2057. Returns the width of the image data in pixels.
  2058. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRIB.Height"><summary>
  2059. Returns the height of the image data in pixels.
  2060. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRIB.PixelFormat"><summary>
  2061. Returns the pixel format of the weather data.
  2062. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoGRIB.Resolution"><summary>
  2063. Returns the resolution of the image data in pixels.
  2064. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoIMG"><summary>
  2065. The ImportDataInfoIMG class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2066. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoIMG.Width"><summary>
  2067. Gets the width of the image data in pixels.
  2068. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoIMG.Height"><summary>
  2069. Gets the height of the image data in pixels.
  2070. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoIMG.PixelFormat"><summary>
  2071. Gets the pixel format of the image data.
  2072. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoIMG.BandCount"><summary>
  2073. Gets the number of bands of the image data, for non-multiband data, it's 1.
  2074. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoIMG.Resolution"><summary>
  2075. Gets the resolution of the image data in pixels.
  2076. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoJP2"><summary>
  2077. The ImportDataInfoJP2 class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2078. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJP2.Width"><summary>
  2079. Gets the width of the image data in pixels.
  2080. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJP2.Height"><summary>
  2081. Gets the height of the image data in pixels.
  2082. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJP2.PixelFormat"><summary>
  2083. Gets the pixel format of the image data.
  2084. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJP2.Resolution"><summary>
  2085. Gets the resolution of the image data in pixels.
  2086. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoJPG"><summary>
  2087. The ImportDataInfoJPG class.This class inherits from the ImportDataInfo class.
  2088. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJPG.Width"><summary>
  2089. Gets the width of the image data in pixels.
  2090. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJPG.Height"><summary>
  2091. Gets the height of the image data in pixels.
  2092. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJPG.PixelFormat"><summary>
  2093. Gets the pixel format of the image data.
  2094. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoJPG.Resolution"><summary>
  2095. Gets the resolution of the image data in pixels.
  2096. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoKML"><summary>
  2097. The ImportDataInfoKML class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2098. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.GetSourceFieldInfos"><summary>
  2099. Gets the information of fields of the source data.
  2100. </summary><returns>The information of the original fields of the data. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.GetTargetFieldInfos"><summary>
  2101. Gets the target field info of the data.
  2102. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2103. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source KML file.
  2104. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.ChangeFieldName(System.String,System.String)"><summary>
  2105. Modifies the name of the field.
  2106. </summary><param name="oldName">The name of the source field. </param><param name="newName">The name of the new field. </param><returns>Returns true if successful,otherwise returns false. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.SetImportFieldState(System.String,System.Boolean)"><summary>
  2107. Sets whether the specified field will be imported.
  2108. </summary><param name="fieldname">the name of the field specified. </param><param name="excludeField">Whether to exclude the field. </param><returns>Returns true if successful,otherwise returns false. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKML.ExchangeFieldOrder(System.String,System.String)"><summary>
  2109. the index positions of the specified two fields of the exchange field info collection
  2110. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful,otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoKML.DatasetType"><summary>
  2111. Gets the type of the source vector dataset.
  2112. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoKML.RecordCount"><summary>
  2113. Gets the count of the features of the imported vector dataset.
  2114. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoKMZ"><summary>
  2115. The ImportDataInfoKMZ class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2116. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.GetSourceFieldInfos"><summary>
  2117. Gets the information of fields of the source data.
  2118. </summary><returns>The field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.GetTargetFieldInfos"><summary>
  2119. Gets the target field info of the data.
  2120. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2121. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source KMZ file.
  2122. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.ChangeFieldName(System.String,System.String)"><summary>
  2123. After modified the name of the field, the information of the target field is updated, the information of the source field are not changed.
  2124. </summary><param name="oldName">The name of the source field.</param><param name="newName">The name of the new field.</param><returns>Returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.SetImportFieldState(System.String,System.Boolean)"><summary>
  2125. Sets whether the specified field will be imported.
  2126. </summary><param name="fieldname">The name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>Returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoKMZ.ExchangeFieldOrder(System.String,System.String)"><summary>
  2127. the index positions of the specified two fields of the exchange field info collection
  2128. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoKMZ.DatasetType"><summary>
  2129. Gets the type of the source vector dataset.
  2130. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoKMZ.RecordCount"><summary>
  2131. Gets the count of the features of the imported vector dataset.
  2132. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoLIDAR"><summary>
  2133. The ImportDataInfoLIDAR class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2134. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.GetSourceFieldInfos"><summary>Gets the information of fields of the source data.</summary><returns>The information of the original fields of the data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.GetTargetFieldInfos"><summary>
  2135. Gets the target field info of the data.
  2136. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2137. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source Lidar file.
  2138. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.ChangeFieldName(System.String,System.String)"><summary>Modifies the name of the field.</summary><param name="sourceFieldName">The name of the source field.</param><param name="targetFieldName">The name of the target field.</param><returns>Whether the conversion was successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldName">the specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>True, if the conversion is successful; Otherwise,false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoLIDAR.ExchangeFieldOrder(System.String,System.String)"><summary>the index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoLIDAR.DatasetType"><summary>
  2139. Gets the DatasetType of the ImportDataInfoLIDAR.
  2140. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoLIDAR.RecordCount"><summary>
  2141. Gets the count of the features of the ImportDataInfoLIDAR.
  2142. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoMAPGIS"><summary>
  2143. The ImportDataInfoMAPGIS class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class
  2144. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.GetSourceFieldInfos"><summary>
  2145. Gets the field info of the source MAPGIS data
  2146. </summary><returns>The information of the original fields of the MAPGIS data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.GetTargetFieldInfos"><summary>
  2147. Gets the target field info of the data.
  2148. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2149. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source MapGIS file.
  2150. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.ChangeFieldName(System.String,System.String)"><summary>
  2151. After modified the name of the field, the information of the target field is updated, the information of the source field are not changed.
  2152. </summary><param name="oldName">The source name.</param><param name="newName">The new name.</param><returns>Returns true if successful, otherwise returns false. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.SetImportFieldState(System.String,System.Boolean)"><summary>
  2153. Set whether to import the field with the specified name based on the given parameters.
  2154. </summary><param name="fieldname">the specified name of the field. </param><param name="excludeField">Whether to exclude the field. </param><returns>Returns true if successful, otherwise returns false. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.ExchangeFieldOrder(System.String,System.String)"><summary>
  2155. the index positions of the specified two fields of the exchange field info collection
  2156. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful,otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.DatasetType"><summary>
  2157. Gets the field info of the source MAPGIS data
  2158. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMAPGIS.RecordCount"><summary>
  2159. Gets the count of the elements of the imported MAPGIS vector data
  2160. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoMIF"><summary>
  2161. The ImportDataInfoMIF class which provides methods and properties of importing the *.mif files of MapInfo.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2162. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.GetSourceFieldInfos"><summary>Gets the information of fields of the source data.</summary><returns>The information of the original fields of the data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.GetTargetFieldInfos"><summary>
  2163. Gets the target field info of the data.
  2164. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2165. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source MIF file.
  2166. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.ChangeFieldName(System.String,System.String)"><summary>Modifies the name of the field.</summary><param name="sourceFieldName">The name of the source field.</param><param name="targetFieldName">The name of the target field.</param><returns>Whether the conversion was successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldName">the specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>True, if the conversion is successful; Otherwise,false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoMIF.ExchangeFieldOrder(System.String,System.String)"><summary>the index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMIF.DatasetType"><summary>
  2167. Gets the type of the imported vector data.
  2168. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMIF.RecordCount"><summary>
  2169. Gets the count of the features of the imported vector dataset.
  2170. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoMrSID"><summary>
  2171. The ImportDataInfoMrSID class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2172. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMrSID.Width"><summary>
  2173. Gets the width of the image data in pixels.
  2174. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMrSID.Height"><summary>
  2175. Gets the height of the image data in pixels.
  2176. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMrSID.PixelFormat"><summary>
  2177. Gets the pixel format of the image data.
  2178. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoMrSID.Resolution"><summary>
  2179. Gets the resolution of the image data in pixels.
  2180. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoOrangeTab"><summary>
  2181. The ImportDataInfo Orange Tab class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2182. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.GetSourceFieldInfos"><summary>
  2183. Gets the field information of the imported source Orange Tab file data.
  2184. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.GetTargetFieldInfos"><summary>
  2185. Gets the target field info of the data.
  2186. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2187. Sets the target field info of the data.
  2188. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.ChangeFieldName(System.String,System.String)"><summary>
  2189. Modifies the field name of the specified field.
  2190. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.SetImportFieldState(System.String,System.Boolean)"><summary>
  2191. Sets whether the specified field will be imported.
  2192. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.ExchangeFieldOrder(System.String,System.String)"><summary>
  2193. the index positions of the specified two elements of the exchange field info collection
  2194. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.DatasetType"><summary>
  2195. Gets the type of the vector dataset.
  2196. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoOrangeTab.RecordCount"><summary>
  2197. Gets the count of the features of the imported vector dataset.
  2198. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoOSM"><summary>
  2199. Import the structure information class of the OSM vector data set.from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo"> ImportDataInfo</see> 类。
  2200. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.GetSourceFieldInfos"><summary>
  2201. Gets the field information for the imported source OSM file data.
  2202. </summary><returns>Field information for the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.GetTargetFieldInfos"><summary>
  2203. Gets the field information for the target data.
  2204. </summary><returns>Field information for the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2205. Sets the field information for the target data.The field definition of the target data must match the actual field values in the source OSM file that needs to be imported.
  2206. </summary><param name="fieldinfos">Field information for the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.ChangeFieldName(System.String,System.String)"><summary>
  2207. Modify the field name of the specified field.
  2208. </summary><param name="oldFieldName">Specifies the field name of the field.</param><param name="newFieldName">Specifies the new field name for the field.</param><returns>A Boolean value indicating whether the field name is updated successfully, and true indicates that the update is successful and false indicates that it is not successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.SetImportFieldState(System.String,System.Boolean)"><summary>
  2209. Sets whether to import specified fields.
  2210. </summary><param name="oldFieldName">Specifies the field name.</param><param name="excludeField">Whether to exclude this field, when true, does not contain this field.</param><returns>A Boolean value indicating whether the setting is successful, true indicates that the setting is successful, and false indicates that it is not successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.ExchangeFieldOrder(System.String,System.String)"><summary>
  2211. The index location for two specified elements in the exchange field information set.
  2212. </summary><param name="fieldName1">The name of the field that needs to be exchanged.</param><param name="fieldName2">The name of the field that needs to be exchanged.</param><returns>A Boolean value that indicates whether two specified elements are exchanged for success, and true indicates that the exchange is successful, and false indicates that it is not successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoOSM.GetImportFieldState(System.String)"><summary>
  2213. Gets whether to import the specified fields.
  2214. </summary><param name="fieldName">Specifies the field name.</param><returns>A Boolean value indicating whether to import the specified field.True represents the import, otherwise it is not imported.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoOSM.DatasetType"><summary>
  2215. Gets the import vector data set type.
  2216. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoOSM.RecordCount"><summary>
  2217.              Get the number of features imported into the vector data.
  2218.              </summary>
  2219.          </member>
  2220.          <member name="T:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector">
  2221.              <summary>
  2222.              Import the structure information class of the Personal Geodatabase format vector dataset. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo"> ImportDataInfo</see> class.
  2223.              </summary>
  2224.          </member>
  2225.          <member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.GetSourceFieldInfos">
  2226.              <summary>
  2227. Get the field information in the Personal Geodatabase format vector data.
  2228. </summary><returns>Original field information in the vector data of the Personal Geodatabase format.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.GetTargetFieldInfos"><summary>
  2229. Get the field information of the target data.
  2230. </summary><returns>Field information for the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2231. Set the field information of the target data. The field definition of the target data must match the actual field value in the source Personal Geodatabase file that needs to be imported.
  2232. </summary><param name="fieldinfos">Field information for the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.ChangeFieldName(System.String,System.String)"><summary>
  2233. After the field name is modified, the field information in the target data is updated, and the field information in the source data is unchanged.
  2234. </summary><param name="oldName">Source name.</param><param name="newName">New name.</param><returns>A Boolean value indicating whether the modification was successful, true indicates that the modification was successful, and false indicates that the modification was unsuccessful. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.SetImportFieldState(System.String,System.Boolean)"><summary>
  2235. Sets whether to import a field with the specified name based on the given parameters.
  2236. </summary><param name="fieldname">Sets whether to import a field with the specified name based on the given parameters.</param><param name="excludeField">Whether to exclude this field. </param><returns>A Boolean value indicating whether the setting is successful, true means the setting is successful, and false means unsuccessful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.GetImportFieldState(System.String)"><summary>
  2237. Gets whether to import the specified field.
  2238. </summary><param name="fieldName">The specified field name.</param><returns>A Boolean value indicating whether to import the specified field. True means import; otherwise it is not imported.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.ExchangeFieldOrder(System.String,System.String)"><summary>
  2239. The index position used to exchange two specified fields in the field information set.
  2240. </summary><param name="fieldName1">The name of the field that needs to be exchanged.</param><param name="fieldName2">The name of the field that needs to be exchanged.</param><returns>A Boolean value, true indicates that the exchange was successful, and false indicates that the exchange was unsuccessful.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.DatasetType"><summary>
  2241. Get the type of the Personal Geodatabase format vector dataset.
  2242. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPersonalGDBVector.RecordCount"><summary>
  2243. Gets the number of features imported into the Personal Geodatabase format vector data.
  2244. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoPNG"><summary>
  2245. The ImportDataInfoPNG class. This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2246. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPNG.Width"><summary>
  2247. Gets the width of the image data in pixels.
  2248. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPNG.Height"><summary>
  2249. Gets the height of the image data in pixels.
  2250. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPNG.PixelFormat"><summary>
  2251. Gets the pixel format of the image data.
  2252. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoPNG.Resolution"><summary>
  2253. Gets the resolution of the image data in pixels.
  2254. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoRAW"><summary>
  2255. The ImportDataInfoRAW class, which provides the information of the imported RAW data. This class is inherited from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2256. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoRAW.Width"><summary>
  2257. Gets the width of the RAW data in pixels.
  2258. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoRAW.Height"><summary>
  2259. Gets the height of the RAW data in pixels.
  2260. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoRAW.PixelFormat"><summary>
  2261. Gets the pixel format of the RAW data.
  2262. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoRAW.Resolution"><summary>
  2263. Gets the resolution of the RAW data. Unit: Pixels per meter.
  2264. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfos"><summary>
  2265. The ImportDataInfos class.This class is the collection class of <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> object.
  2266. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfos.SetImportState(System.Int32,System.Boolean)"><summary>This method is used to remove the items with specific index from ImportDataInfos. </summary><param name="index">the index of the item in the collection to be removed.</param><param name="excludeDataInfo">Whether to exclude the specified items when importing.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfos.GetImportState(System.Int32)"><summary>Gets whether the item at specific index be removed from ExportSettings. </summary><param name="index">The index of the item in the collection to be removed.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfos.GetEnumerator"><summary>
  2267. Returns an enumerator that can iterate through the collection.
  2268. </summary><returns>Returns an enumerator that iterates through a collection.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfos.Count"><summary>
  2269. Returns the count of the elements in the given ImportSettings.
  2270. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfos.Item(System.Int32)"><summary>
  2271. Gets the ImportSetting object with specified index in the ImportSettings object.
  2272. </summary><param name="index">The index value of the ImportSetting object. The index starts at 0.</param></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoSCV"><summary>
  2273. The ImportDataInfoSCV class.
  2274. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSCV.GetTargetFieldInfos"><summary>
  2275. Gets the target field info of the data.
  2276. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSCV.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2277. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source file.
  2278. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSCV.DatasetType"><summary>
  2279. Gets the type of the imported vector dataset.
  2280. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSCV.RecordCount"><summary>
  2281. Gets the count of the features of the imported vector dataset.
  2282. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoSDEVector"><summary>
  2283. The ImportDataInfoSDEVector class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2284. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.GetSourceFieldInfos"><summary>
  2285. Gets the target field info of the data.
  2286. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.GetTargetFieldInfos"><summary>
  2287. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source SDEVector file.
  2288. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.ChangeFieldName(System.String,System.String)"><summary>
  2289. Modifies the field name of the specified field.
  2290. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.SetImportFieldState(System.String,System.Boolean)"><summary>
  2291. Sets whether the specified field will be imported.
  2292. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.ExchangeFieldOrder(System.String,System.String)"><summary>
  2293. the index positions of the specified two elements of the exchange field info collection
  2294. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSDEVector.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2295. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source file.
  2296. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSDEVector.DatasetType"><summary>
  2297. Gets the type of the vector dataset.
  2298. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSDEVector.RecordCount"><summary>
  2299. Gets the count of the features of the imported vector dataset.
  2300. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoSHP"><summary>
  2301. The ImportDataInfoSHP class which which provides methods and properties of importing the *.shp files of ArcView.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2302. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.GetSourceFieldInfos"><summary>
  2303. Gets the information of fields of the source data.
  2304. </summary><returns>The information of the original fields of the data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.GetTargetFieldInfos"><summary>
  2305. Gets the target field info of the data.
  2306. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.ChangeFieldName(System.String,System.String)"><summary>
  2307. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source SHP file.
  2308. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldname">the specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>True, if the conversion is successful; Otherwise,false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.ExchangeFieldOrder(System.String,System.String)"><summary>the index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoSHP.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2309. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source file.
  2310. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSHP.DatasetType"><summary>
  2311. Gets the type of the imported vector data.
  2312. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSHP.RecordCount"><summary>
  2313. Gets the count of the features of the imported vector dataset.
  2314. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoSIT"><summary>
  2315. The ImportDataInfoSIT class, which provides the information of the imported SIT data. This class is inhertied from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see>.
  2316. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSIT.Width"><summary>
  2317. Gets the width of the image data in pixels.
  2318. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSIT.Height"><summary>
  2319. Gets the height of the image data in pixels.
  2320. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSIT.PixelFormat"><summary>
  2321. Gets the pixel format of the image data.
  2322. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoSIT.Resolution"><summary>
  2323. Gets the resolution of the image data in pixels.
  2324. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTAB"><summary>
  2325. The ImportDataInfoTAB class which provides methods and properties of importing the *.tab files of MapInfo.This class inherits from the ImportDataInfo class.
  2326. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.GetSourceFieldInfos"><summary>
  2327. Gets the target field info of the data.
  2328. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.GetTargetFieldInfos"><summary>
  2329. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source TAB file.
  2330. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.ChangeFieldName(System.String,System.String)"><summary>Modifies the name of the field.</summary><param name="oldName">The original name.</param><param name="newName">The new name.</param><returns>Whether the conversion was successful.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.SetImportFieldState(System.String,System.Boolean)"><summary>Sets whether the specified field will be imported.</summary><param name="fieldname">the specified name of the field.</param><param name="excludeField">Whether to exclude the field.</param><returns>True, if the conversion is successful; Otherwise,false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.ExchangeFieldOrder(System.String,System.String)"><summary>the index positions of the specified two elements of the exchange field info collection</summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>Returns true if successful; Otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTAB.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2331. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source file.
  2332. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTAB.DatasetType"><summary>
  2333. Gets the type of the imported vector data.
  2334. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTAB.RecordCount"><summary>
  2335. Gets the count of the features of the imported vector dataset.
  2336. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector"><summary>
  2337. The ImportDataInfoTEMSBuildingVector class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2338. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector.GetTargetFieldInfos"><summary>
  2339. Gets the target field info of the data.
  2340. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2341. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source TEMSBuildingVector file.
  2342. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector.GetSourceFieldInfos"><summary>
  2343. Gets the information of fields of the source data.
  2344. </summary><returns>The information of the original fields of the data.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector.DatasetType"><summary>
  2345. Gets the type of the source vector dataset.
  2346. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSBuildingVector.RecordCount"><summary>
  2347. Gets the count of the features of the imported vector dataset.
  2348. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTEMSClutter"><summary>
  2349. It is the info class for <see cref="F:SuperMap.Data.Conversion.FileType.TEMSClutter">TEMSClutter</see> class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2350. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSClutter.Width"><summary>
  2351. Gets the width of the image data in pixels.
  2352. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSClutter.Height"><summary>
  2353. Gets the height of the image data in pixels.
  2354. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSClutter.PixelFormat"><summary>
  2355. Gets the pixel format of the image data.
  2356. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSClutter.Resolution"><summary>
  2357. Gets the resolution of the image data in pixels.
  2358. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels"><summary>
  2359. The ImportDataInfoTEMSTEXT class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2360. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels.GetTargetFieldInfos"><summary>
  2361. Gets the target field info of the data.
  2362. </summary><returns>The field info of the data. </returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2363. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source TEMSTextLabels file.
  2364. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels.GetSourceFieldInfos"><summary>
  2365. Gets the information of fields of the source data.
  2366. </summary><returns>The information of the original fields of the data.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels.DatasetType"><summary>
  2367. Gets the type of the source vector dataset.
  2368. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSTextLabels.RecordCount"><summary>
  2369. Gets the count of the features of the imported vector dataset.
  2370. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTEMSVector"><summary>
  2371. The ImportDataInfoTEMSVector class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2372. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSVector.GetTargetFieldInfos"><summary>
  2373. Gets the target field info of the data.
  2374. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSVector.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2375. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source TEMSVector file.
  2376. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoTEMSVector.GetSourceFieldInfos"><summary>
  2377. Gets the information of fields of the source data.
  2378. </summary><returns>The information of the original fields of the data.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSVector.DatasetType"><summary>
  2379. Gets the type of the source vector dataset.
  2380. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTEMSVector.RecordCount"><summary>
  2381. Gets the count of the features of the imported vector dataset.
  2382. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoTIF"><summary>
  2383. The ImportDataInfoTIF class. This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2384. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTIF.Width"><summary>
  2385. Gets the width of the image data in pixels.
  2386. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTIF.Height"><summary>
  2387. Gets the height of the image data in pixels.
  2388. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTIF.PixelFormat"><summary>
  2389. Gets the pixel format of the image data.
  2390. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTIF.BandCount"><summary>
  2391. Gets the number of bands of the image data, for non-multiband data, it's 1.
  2392. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoTIF.Resolution"><summary>
  2393. Gets the resolution of the image data in pixels.
  2394. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoUSGSDEM"><summary>
  2395. The ImportDataInfoUSGSDEM class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo"> ImportDataInfo</see> class.
  2396. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoUSGSDEM.Width"><summary>
  2397. Gets the width of the of USGS-DEM data, in pixels.
  2398. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoUSGSDEM.Height"><summary>
  2399. Gets the height of the of USGS-DEM data, in pixels.
  2400. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoUSGSDEM.PixelFormat"><summary>
  2401. Gets the pixel format of the USGS-DEM data.
  2402. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoUSGSDEM.Resolution"><summary>
  2403. Gets the resolution of the USGS-DEM data. Unit: pixels per meter.
  2404. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoVCT"><summary>
  2405. The ImportDataInfoVCT class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2406. </summary></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.GetSourceFieldInfos"><summary>
  2407. Gets the field information of the imported source VCT file data.
  2408. </summary><returns>the field info of the source data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.GetTargetFieldInfos"><summary>
  2409. Gets the target field info of the data.
  2410. </summary><returns>the field info of the target data.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.SetTargetFieldInfos(SuperMap.Data.FieldInfo[])"><summary>
  2411. Sets the exported target field information. The definition of the imported target field needs to match the actual field of the source VCT file.
  2412. </summary><param name="fieldinfos">the field info of the target data.</param></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.ChangeFieldName(System.String,System.String)"><summary>
  2413. Modifies the field name of the specified field.
  2414. </summary><param name="oldFieldName">the original field name of the specified field.</param><param name="newFieldName">the new field name of the specified field.</param><returns>a boolean, returns true if successful,otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.SetImportFieldState(System.String,System.Boolean)"><summary>
  2415. Sets whether the specified field will be imported.
  2416. </summary><param name="oldFieldName">the specified name of the field.</param><param name="excludeField">whether to exclude the field.</param><returns>a boolean, returns true if successful, otherwise returns false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.ExchangeFieldOrder(System.String,System.String)"><summary>
  2417. the index positions of the specified two elements of the exchange field info collection
  2418. </summary><param name="fieldName1">the field name to be exchanged.</param><param name="fieldName2">The field name to be exchanged.</param><returns>a boolean, true if exchanged successfully,otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportDataInfoVCT.GetImportFieldState(System.String)"><summary>
  2419. Gets whether the specified field will be imported.
  2420. </summary><param name="fieldName">the specified name of the field.</param><returns>A boolean, true if import the specified field, otherwise false.</returns></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVCT.DatasetType"><summary>
  2421. Gets the type of the vector dataset.
  2422. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVCT.RecordCount"><summary>
  2423. Gets the count of the features of the imported vector dataset.
  2424. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoVRT"><summary>
  2425. Import information classes for GDAL Virtual (VRT) data. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo"> ImportDataInfo</see> class.
  2426. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVRT.Width"><summary>
  2427. Get the width of the image data. The unit is pixels.
  2428. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVRT.Height"><summary>
  2429. Get the height of the image data. The unit is pixels.
  2430. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVRT.PixelFormat"><summary>
  2431. Get the pixel format of the image data.
  2432. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoVRT.Resolution"><summary>
  2433. Get the resolution of the image data. Unit: pixels / meter.
  2434. </summary></member><member name="T:SuperMap.Data.Conversion.ImportDataInfoWOR"><summary>
  2435. The ImportDataInfoWOR class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportDataInfo">ImportDataInfo</see> class.
  2436. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoWOR.DatasetNames"><summary>
  2437. Gets or sets the original name dictionary of the dataset, Key is the original name of the dataset, Value is the name set by the user, users can delete a dictionary item, but cannot increase the number of items in the dictionary.
  2438. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoWOR.MapNames"><summary>
  2439. Gets or sets the original name array of the map, Key is the original name of the map, Value is the name set by the user, users can delete a dictionary item, but cannot increase the number of items in the dictionary.
  2440. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoWOR.TargetName"><summary>
  2441. Gets or sets the name of the imported target dataset.
  2442. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoWOR.Bounds"><summary>
  2443. Gets the geographic bounds that contain all the elements of the import data.
  2444. </summary></member><member name="P:SuperMap.Data.Conversion.ImportDataInfoWOR.SourceFile"><summary>
  2445. Gets the source file corresponding to the imported target dataset.
  2446. </summary></member><member name="T:SuperMap.Data.Conversion.ImportMode"><summary>
  2447. The ImportMode enumeration class. This class provides the operation mode when the specified name of the imported data existed already.
  2448. </summary></member><member name="F:SuperMap.Data.Conversion.ImportMode.None"><summary>
  2449. Modify the name of the target object before import if there is conflict in the names.
  2450. </summary></member><member name="F:SuperMap.Data.Conversion.ImportMode.Overwrite"><summary>
  2451. Overwrite if there is name conflict.
  2452. </summary></member><member name="F:SuperMap.Data.Conversion.ImportMode.Append"><summary>
  2453. Appends the dataset if the specified name of the imported data existed already. Appends if the type or the construction is not identical with the existent data; false, otherwise.
  2454. </summary></member><member name="T:SuperMap.Data.Conversion.ImportResult"><summary>
  2455. Provide SucceedSettings and FailedSettings the conversion setting of the tasks both succeed and failed.
  2456. </summary></member><member name="M:SuperMap.Data.Conversion.ImportResult.GetSucceedDatasetNames(SuperMap.Data.Conversion.ImportSetting)"><summary>
  2457. Gets the dataset name in the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> collection after it is imported successfully.
  2458. </summary><param name="importSetting">The <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> object imported successfully. The ImportSetting object must be a object got by the ImportResult.getSucceedSettings method.</param><returns>The name of the dataset.</returns></member><member name="M:SuperMap.Data.Conversion.ImportResult.GetSucceedMapNames(SuperMap.Data.Conversion.ImportSetting)"><summary>
  2459. Gets the map name corresponding to the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> collection after it is imported successfully.
  2460. </summary><param name="importSetting">The <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> object imported successfully. The ImportSetting object must be a object got by the ImportResult.getSucceedSettings method.</param><returns>ImportSetting The corresponds map name.</returns><code>
  2461. public void ImportSHPTest()
  2462. {
  2463. // 1.Create DatasourceConnectionInfo object
  2464. DatasourceConnectionInfo info = new DatasourceConnectionInfo();
  2465. info.EngineType=EngineType.UDB;
  2466. info.Server = @"E:\conversion\import\testimport.udb";
  2467. info.Alias = "testimport_udb";
  2468. info.Password="";
  2469. //2.Create importSettingSHP object, set the import path and the TargetDatasourceConnectionInfo
  2470. String path = @"E:\conversion\test.shp";
  2471. ImportSettingSHP importSettingSHP = new ImportSettingSHP();
  2472. importSettingSHP.TargetDatasourceConnectionInfo = info;
  2473. importSettingSHP.SourceFilePath = path;
  2474. ImportDataInfos importDataInfos2 = importSettingSHP.GetTargetDataInfos("");
  2475. String[] names = PathManager.SetTagetDatasetName(importDataInfos2, "shp1");
  2476. importSettingSHP.SetTargetDataInfos(importDataInfos2);
  2477. //3.Create DataImport object and set the importSettings object
  2478. DataImport dataImport = new DataImport();
  2479. ImportSettings importSettings = dataImport.ImportSettings;
  2480. importSettings.Add(importSettingSHP);
  2481. dataImport.ImportSettings = importSettings;
  2482. PathManager.deleteDatasets(info, names);
  2483. //Import
  2484. ImportResult result = dataImport.Run();
  2485. Assert.AreEqual(0, result.FailedSettings.Length);
  2486. //Get the dataset name when imported successfully
  2487. //Note that pass the imported succeedSetting, it can be got by ImportResult
  2488. String[] SucceedName = result.GetSucceedDatasetNames(result.SucceedSettings[0]);
  2489. Console.WriteLine(SucceedName);
  2490. }
  2491. </code></member><member name="M:SuperMap.Data.Conversion.ImportResult.Dispose"><summary>
  2492. Releases all resources that the objects occupy.
  2493. </summary></member><member name="P:SuperMap.Data.Conversion.ImportResult.SucceedSettings"><summary>
  2494. Gets the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> settings of the successful tasks.
  2495. </summary></member><member name="P:SuperMap.Data.Conversion.ImportResult.FailedSettings"><summary>
  2496. Gets the import settings of the failed tasks.The user can get whether the count of the failed tasks is zero to determine whether imported successfully.
  2497. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSetting"><summary>
  2498. The base class of all types of import settings, provide the public properties, methods for the import setting.
  2499. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSetting.#ctor"><summary>
  2500. The Constructor.
  2501. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSetting.ToXML"><summary>Exports the current settings to the XML file for saving the imported parameter settings. This method is obsolete. The functionality is not provided any more.</summary><returns>The exported XML content.</returns></member><member name="M:SuperMap.Data.Conversion.ImportSetting.FromXML(System.String)"><summary>Reads the settings from an external XML flow to facilitate the multiple conversions. This method is obsolete. The functionality is not provided any more.</summary><param name="xml">The XML content to be imported.</param><returns>Returns true if successfully modified; otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportSetting.GetTargetDataInfos(System.String)"><summary>Gets the targetDataInfos, if set as a dataset (a CAD dataset, for example), the length of the array is 1, if set as a simple dataset or multiband dataset, the length of the array is not 1.</summary><param name="targetNamePrefix">Imports the prefix of the name of the dataset. No prefix added if it is null or empty string.</param></member><member name="M:SuperMap.Data.Conversion.ImportSetting.GetTargetDataInfos(System.String,SuperMap.Data.EncodeType,SuperMap.Data.PrjCoordSys)"><summary>Gets the targetDataInfos, the name prefix, EncodeType, and PrjCoordSys in the target dataset in the target dataset are assigned.</summary><param name="targetNamePrefix">Imports the prefix of the name of the dataset. No prefix added if it is null or empty string.</param><param name="targetEncodeType">The encode type of the imported dataset.</param><param name="targetPrjCoordSy">The target coordinate system of the imported dataset.</param></member><member name="M:SuperMap.Data.Conversion.ImportSetting.SetTargetDataInfos(SuperMap.Data.Conversion.ImportDataInfos)"><summary>Sets target dataset information.</summary><param name="targetDataInfos">The information of the settings of the dataset.</param></member><member name="M:SuperMap.Data.Conversion.ImportSetting.SetScalingFactor(System.Double,System.Double,System.Double)"><summary>Set the zoom factor.</summary><param name="ratioX">X scaling factor.</param><param name="ratioY">Y scaling factor.</param><param name="ratioZ">Z scaling factor.</param></member><member name="M:SuperMap.Data.Conversion.ImportSetting.GetSourcePrjCoordSys"><summary>Gets the coordinate system of the source data.</summary></member><member name="M:SuperMap.Data.Conversion.ImportSetting.SetFieldValue(System.String,System.Object)"><summary>
  2502. Set the field value for the specified field name, the field must exist, and if it does not exist, the setting fails.
  2503. </summary><param name="strFieldName">the specified name of the field.</param><param name="varValue">The field value.</param></member><member name="M:SuperMap.Data.Conversion.ImportSetting.Dispose"><summary>
  2504. Releases all resources that the object occupies.
  2505. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.SourceFileCharset"><summary>
  2506. Gets or sets the character set type of the import data. It is not supported in SuperMap Objects .NET 6R(2012) SP2.
  2507. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.SourceFilePath"><summary>
  2508. Gets or sets the path of the data to import.
  2509. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.SourceFileType"><summary>
  2510. Gets the type of the source file to be imported. This type should be corresponding to the instance type. For example, this property should be FileType.BMP for the ImportSettingBMP object.
  2511. </summary><value>The default type is FileType.None</value></member><member name="P:SuperMap.Data.Conversion.ImportSetting.TargetDatasourceConnectionInfo"><summary>
  2512. Gets or sets the DatasourceConnectionInfo to import, create new datasource according to the targetConnectionInfo if there is no datasource. RAM datasource and database datasource will be supported.
  2513. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.TargetEncodeType"><summary>
  2514. Gets or sets the encode type of the target dataset, its the encode type of the source data by default.
  2515. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.TargetPrjCoordSys"><summary>
  2516. Gets or sets the coordinate system of the target data.
  2517. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.ImportMode"><summary>
  2518. Gets or Sets the import mode if a dataset of the same name existed.
  2519. </summary><value>The default mode is ImportMode.None</value></member><member name="P:SuperMap.Data.Conversion.ImportSetting.IsUseFME"><summary><para>Gets or sets whether use the FME import mode.</para><para>True means to use the FME import mode, which needs the FME license and only supports the importing of the file types supported by FME.</para><para>False means not to use the FME import mode, which does not need the FME license, and only supports the importing of the file types not supported by FME.</para></summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSetting.TargetDatasource"><summary>
  2520. Gets or sets the datasource object to be imported.
  2521. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSetting.TargetDatasetName"><summary>
  2522. Gets or sets the file name of the target dataset.
  2523. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingAiBinGrid"><summary>
  2524. ArcInfo binary grid data importing.
  2525. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingAiBinGrid.#ctor"><summary>
  2526. Constructs a new ImportSettingAiBinGrid object.
  2527. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingAiBinGrid.#ctor(SuperMap.Data.Conversion.ImportSettingAiBinGrid)"><summary>
  2528. Constructs a new ImportSettingAiBinGrid object according to given parameters.
  2529. </summary><param name="importSettingAiBinGrid">The specified ImportSettingAiBinGrid object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingAiBinGrid.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2530. Constructs a new ImportSettingAiBinGrid object according to given parameters.
  2531. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingAiBinGrid.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2532. Constructs a new ImportSettingAiBinGrid object according to given parameters.
  2533. </summary><param name="sourceFilePath">source file path.</param><param name="targetDatasource">target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingAiBinGrid.IsPyramidBuilt"><summary>
  2534. Gets or sets whether to automatically build an image pyramid. The default is true, indicating that no image pyramid is built automatically.
  2535. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingAiBinGrid.IgnoreMode"><summary>
  2536. Gets or sets the ignored color mode when appending image data, including none mode, border scan mode, and ignore background mode.
  2537. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingAiBinGrid.IgnoreValues"><summary>
  2538. Gets or sets the color set values to ignore.
  2539. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingAiBinGrid.ImportingAsGrid"><summary>
  2540. Gets or sets whether to import to the grid dataset.The default value is false, represents importing it to image dataset.
  2541. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingBIL"><summary>
  2542. The ImportSettingBIL class , which provides the information of imported setting of the GIRD data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2543. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIL.#ctor"><summary>
  2544. Initializes a new instance of this ImportSettingBIL class.
  2545. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIL.#ctor(SuperMap.Data.Conversion.ImportSettingBIL)"><summary>
  2546. Initializes a new instance of the ImportSettingBIL class which is identical with the specified ImportSettingBIL object.
  2547. </summary><param name="importSettingBIL">the object used to initialize a new instance of the ImportSettingBIL class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIL.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2548. Initializes a new ImportSettingBIL instance according to the specified parameters.
  2549. </summary><param name="sourceFilePath">the source file path of the specified BIL data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIL.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2550. Initializes a new ImportSettingBIL instance according to the specified parameters.
  2551. </summary><param name="sourceFilePath">the source file path of the specified BIL data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIL.IsPyramidBuilt"><summary>
  2552. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2553. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIL.IgnoreMode"><summary>
  2554. Gets or sets the IgnoreMode of BIL file.
  2555. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIL.IgnoreValues"><summary>
  2556. Gets or sets the color values to ignore.
  2557. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingBIP"><summary>
  2558. The ImportSettingBIP class, which provides the parameter setting of the BSQ grid data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2559. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIP.#ctor"><summary>
  2560. Initializes a new instance of this ImportSettingBIP class.
  2561. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIP.#ctor(SuperMap.Data.Conversion.ImportSettingBIP)"><summary>
  2562. Initializes a new instance of the ImportSettingBIP class which is identical with the specified ImportSettingBIP object.
  2563. </summary><param name="importSettingBIP">the object used to initialize a new instance of the ImportSettingBIP class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIP.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2564. Initializes a new ImportSettingBIP instance according to the specified parameters.
  2565. </summary><param name="sourceFilePath">The path of the BIP data source file specified to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBIP.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2566. Initializes a new ImportSettingBIP instance according to the specified parameters.
  2567. </summary><param name="sourceFilePath">The path of the BIP data source file specified to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIP.IsPyramidBuilt"><summary>
  2568. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2569. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIP.IgnoreMode"><summary>
  2570. Gets or sets the IgnoreMode of BIP grid data.
  2571. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingBIP.IgnoreValues"><summary>
  2572. Gets or sets the color values to ignore.
  2573. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingBMP"><summary>
  2574. The ImportSettingBMP class, which provides the information of imported setting of the BMP data.This class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2575. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBMP.#ctor"><summary>
  2576. Initializes a new instance of this ImportSettingBMP class.
  2577. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBMP.#ctor(SuperMap.Data.Conversion.ImportSettingBMP)"><summary>
  2578. Initializes a new instance of the ImportSettingBMP class which is identical with the specified ImportSettingBMP object.
  2579. </summary><param name="importSettingBMP">the object used to initialize a new instance of the ImportSettingBMP class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBMP.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2580. Initializes a new instance of the ImportSettingBMP class with the specified parameters.
  2581. </summary><param name="sourceFilePath">the specified source file path of the BMP format data.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBMP.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2582. Initializes a new instance of the ImportSettingBMP class with the specified parameters.
  2583. </summary><param name="sourceFilePath">the specified source file path of the imported BMP data.</param><param name="targetDatasource">The specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.ImportingAsGrid"><summary>
  2584. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  2585. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.IsPyramidBuilt"><summary>
  2586. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2587. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.WorldFilePath"><summary>
  2588. Gets or sets the path of the coordinates of the images.
  2589. </summary><value>The default value is String.Empty.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.MultiBandImportMode"><summary>
  2590. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  2591. <para>This interface is available only when there are FME license.</para></summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.Composite">Composite</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.IgnoreMode"><summary>
  2592. Gets or sets the IgnoreMode of BMP file.
  2593. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingBMP.IgnoreValues"><summary>
  2594. Gets or sets the color values to ignore.
  2595. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingBSQ"><summary>
  2596. The ImportSettingBSQ class, which provides the parameter setting of the BSQ grid data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2597. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBSQ.#ctor"><summary>
  2598. Initializes a new instance of this ImportSettingBSQ class.
  2599. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingBSQ.#ctor(SuperMap.Data.Conversion.ImportSettingBSQ)"><summary>
  2600. Initializes a new instance of the ImportSettingBSQ class which is identical with the specified ImportSettingBSQ object.
  2601. </summary><param name="importSettingBSQ">the object used to initialize a new instance of the ImportSettingBSQ class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBSQ.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2602. Initializes a new ImportSettingBSQ instance according to the specified parameters.
  2603. </summary><param name="sourceFilePath">The path of the BSQ data source file specified to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingBSQ.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2604. Initializes a new ImportSettingBSQ instance according to the specified parameters.
  2605. </summary><param name="sourceFilePath">The path of the BSQ data source file specified to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingBSQ.IsPyramidBuilt"><summary>
  2606. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2607. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingBSQ.IgnoreMode"><summary>
  2608. Gets or sets the IgnoreMode of BSQ grid data.
  2609. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingBSQ.IgnoreValues"><summary>
  2610. Gets or sets the color values to ignore.
  2611. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingCoverage"><summary>
  2612. The ImportSettingCoverage class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  2613. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingCoverage.#ctor"><summary>
  2614. Initializes a new instance of this ImportSettingCoverage class.
  2615. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingCoverage.#ctor(SuperMap.Data.Conversion.ImportSettingCoverage)"><summary>
  2616. The copy constructor, initializes a new instance of the ImportSettingCoverage class which is identical with the specified ImportSettingCoverage object.
  2617. </summary><param name="importSettingCoverage">the object used to initialize a new instance of the ImportSettingCoverage class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCoverage.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2618. Initializes a new instance of the ImportSettingCoverage class with the specified parameters.
  2619. </summary><param name="sourceFilePath">the specified source file path of the imported data with Coverage format.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCoverage.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2620. Initializes a new instance of the ImportSettingCoverage class with the specified parameters.
  2621. </summary><param name="sourceFilePath">the specified source file path of the imported data with Coverage format.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingCoverage.SpatialIndex"><summary>
  2622. Gets or sets the information of the spatial index.
  2623. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingCoverage.IsAttributeIgnored"><summary>
  2624. Gets or sets whether to ignore attribute information when import Coverage data. The default is false.
  2625. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingCSV"><summary>
  2626. The <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSettingCSV</see> class, which provides the information of imported setting of the CSV data.This class inherits from ImportSetting class.
  2627. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.#ctor"><summary>
  2628. Constructs a new ImportSettingCSV object.
  2629. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.#ctor(SuperMap.Data.Conversion.ImportSettingCSV)"><summary>
  2630. Builds a new object that is the same with the given ImportSettingCSV object.
  2631. </summary><param name="importSettingCSV">The specified ImportSettingCSV object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2632. Constructs a new ImportSettingCSV object according to given parameters.
  2633. </summary><param name="sourceFilePath">The specified source file path to be imported.</param><param name="targetConnectionInfo">The specified target connection information of the imported datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2634. Constructs a new ImportSettingCSV object according to given parameters.
  2635. </summary><param name="sourceFilePath">The specified source file path to be imported.</param><param name="targetDatasource">The specified target datasource to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.SetFieldsAsPoint(System.String[])"><summary>
  2636. Set the specified fields to X, Y, or X, Y, Z coordinates, and if the conditions are met, a point or 3D point dataset is generated.
  2637. </summary><param name="arrField">Specifies the set of fields whose size is 2 or 3.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.SetIndexsAsPoint(System.Int32[])"><summary>
  2638. Set the specified index to X, Y, or X, Y, Z coordinates, and if the conditions are met, a point or 3D point dataset is generated.
  2639. </summary><param name="arrIndex">Specifies the set of index whose size is 2 or 3.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingCSV.SetIndexAsGeometry(System.Int32)"><summary>
  2640. Sets the Geometry index position for the specified WKT string.
  2641. </summary><param name="geometryIndex">The specified index.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingCSV.SpatialIndex"><summary>
  2642. Gets or sets the spatial index of the imported dataset.
  2643. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingCSV.Separator"><summary>
  2644. Gets or sets the field separator in the source CSV file which needs to be imported. The default separator is comma.
  2645. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingCSV.FirstRowIsField"><summary>
  2646. Gets or sets whether the stating line of the source CSV file is the field name. True, the field name is the field value of the CSV file starting line after imported; false, the field name imported are col0, col1, col2... colN-1.
  2647. </summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingCSV.IsImportEmptyDataset"><summary>
  2648. Sets or gets whether to import the null dataset
  2649. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingDBF"><summary>
  2650. the <see cref="F:SuperMap.Data.Conversion.FileType.DBF">ImportSettingDBF</see> class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class
  2651. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDBF.#ctor"><summary>
  2652. Initializes a new instance of this ImportSettingDBF class.
  2653. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDBF.#ctor(SuperMap.Data.Conversion.ImportSettingDBF)"><summary>
  2654. Initializes a new instance of the ImportSettingDB class which is identical with the specified ImportSettingDB object.
  2655. </summary><param name="importSettingDBF">The object used to initialize a new instance of the ImportSettingDBF class. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDBF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2656. Initializes a new instance of the ImportSettingDBF class with the specified parameters.
  2657. </summary><param name="sourceFilePath">The specified source file path of the imported data with DBF format. </param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object to be imported. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDBF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2658. Initializes a new instance of the ImportSettingDBF class with the specified parameters.
  2659. </summary><param name="sourceFilePath">The specified source file path of the imported data with DBF format.</param><param name="targetDatasource">The specified target datasource object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingDBF.IsImportEmptyDataset"><summary>
  2660. Sets or gets whether to import the null dataset
  2661. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingDGN"><summary>
  2662. The ImportSettingDGN class , which provides the information of imported setting of the GIRD data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2663. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor"><summary>
  2664. Initializes a new instance of this ImportSettingDGN class.
  2665. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor(SuperMap.Data.Conversion.ImportSettingDGN)"><summary>
  2666. Copy constructor, initializes a new instance of the ImportSettingDGN class which is identical with the specified ImportSettingDGN object.
  2667. </summary><param name="importSettingDGN">the object used to initialize a new instance of the importSettingDGN class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2668. Initializes a new instance of the importSettingDGN class with the specified parameters.
  2669. </summary><param name="sourceFilePath">the source file path of the specified DGN data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2670. Initializes a new instance of the importSettingDGN class with the specified parameters.
  2671. </summary><param name="sourceFilePath">the source file path of the specified DGN data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  2672. Initializes a new instance of the importSettingDGN class with the specified parameters.
  2673. </summary><param name="sourceFilePath">the source file path of the specified DGN data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDGN.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  2674. Initializes a new instance of the importSettingDGN class with the specified parameters.
  2675. </summary><param name="sourceFilePath">the source file path of the specified DGN data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.ImportingAsCAD"><summary>
  2676. Gets or sets whether to import the DXF file to CAD dataset.The default value is true, represents importing it into CAD dataset, otherwise into the vector dataset.
  2677. </summary><value>the default value is true, means import to CAD dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.SpatialIndex"><summary>
  2678. Gets or sets the information of the spatial index.
  2679. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.ImportingCellAsPoint"><summary>
  2680. Gets or sets whether to import cell objects to cell header. The default is false, that means import cell objects to formats other than cell header. True means replace the cell object with cell header objects.
  2681. </summary><value>the default value is false, that is import the cell object in feature object except cell header.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.ImportingByLayer"><summary>
  2682. Gets or sets whether to merge the layers of source CAD dataset to the imported data, where the CAD data is stored with the layer.The default value is false, which represents merging all the layers to one CAD dataset; otherwise imported each layer to a corresponding CAD dataset.
  2683. </summary><value>The default value is false, that means merge all the layer information to one CAD dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.StyleMappingTableFile"><summary>
  2684. Gets or sets the style lookup table store path.
  2685. </summary><value>the default store path is: [Installation directory]/Bin/resource/stmi.stt.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDGN.IsImportEmptyDataset"><summary>
  2686. Sets or gets whether to import the null dataset
  2687. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingDWG"><summary>
  2688. The ImportSettingDWG class, which provides the information of imported setting of the DXF of AutoCAD data.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2689. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor"><summary>
  2690. Initializes a new instance of this ImportSettingDWG class.
  2691. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor(SuperMap.Data.Conversion.ImportSettingDWG)"><summary>
  2692. Initializes a new instance of the ImportSettingDWG class which is identical with the specified ImportSettingDWG object.
  2693. </summary><param name="importSettingDWG">the object used to initialize a new instance of the ImportSettingDWG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2694. Initializes a new instance of the ImportSettingDWG class with the specified parameters.
  2695. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2696. Initializes a new instance of the ImportSettingDWG class with the specified parameters.
  2697. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  2698. Initializes a new instance of the ImportSettingDWG class with the specified parameters.
  2699. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  2700. Initializes a new instance of the ImportSettingDWG class with the specified parameters.
  2701. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDWG.SetShxPaths(System.String[])"><summary>
  2702. Set the path to the shx font path.
  2703. </summary><param name="arrField">Font library path array.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingAsCAD"><summary>
  2704. Gets or sets whether to import the DXF file to CAD dataset.The default value is true, represents importing it into CAD dataset, otherwise into the vector dataset.
  2705. </summary><value>The default value is true.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.SpatialIndex"><summary>
  2706. Gets or sets the information of the spatial index.
  2707. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingBlockAsPoint"><summary>
  2708. Gets or sets whether to import symbol block to the point object or compound object. The default value is false, represents importing to as the compound object, otherwise point object.
  2709. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.IsLWPLineWidthIgnored"><summary>
  2710. Gets or sets whether to ignore the width of Polyline, the default is false.
  2711. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.CurveSegment"><summary>
  2712. Gets or sets the curve fitting precision, the default is 73.
  2713. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingExternalData"><summary>
  2714. Gets or sets whether to import external data, that is some extra field after importing the CAD data like attribute table, the default is false, or append the external data to the default field.
  2715. The extended array group code (1010 1020 1030) (1011 1021 1031) (1012 1022 1032) (1013 1023 1033). So if it appears 1010 1011 1012 1013, it will complete the group fields.
  2716. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingByLayer"><summary>
  2717. Gets or sets whether to merge the layers of source CAD dataset to the imported data, where the CAD data is stored with the layer.The default value is false, which represents merging all the layers to one CAD dataset; otherwise imported each layer to a corresponding CAD dataset.
  2718. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingInvisibleLayer"><summary>
  2719. Gets or sets whether to import invisible layers, the default is false. Invisible layers are the layer set as invisible in CAD.
  2720. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.StyleMappingTableFile"><summary>
  2721. Gets or sets the style lookup table store path.
  2722. </summary><value>the default store path is: [Installation directory]/Bin/resource/stmi.stt.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.IsBlockAttributeIgnored"><summary>
  2723. Gets or sets whether to ignore the block attribute when import the data, the default is true, means ignore the block attribute.
  2724. </summary><value>The default value is true, that is ignore block attribute when importing.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.IsImportAs3D"><summary>
  2725. Gets or sets whether to import to a 3D dataset.
  2726. </summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.KeepingParametricPart"><summary>
  2727. Gets or sets whether to keep the parametric part of Acad data.
  2728. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.ImportingXRecord"><summary>
  2729. Gets or sets whether to import custom fields and attribute fields as extension records.
  2730. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDWG.IsImportEmptyDataset"><summary>
  2731. Sets or gets whether to import the null dataset
  2732. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingDXF"><summary>
  2733. The ImportSettingDXF class, which provides the information of imported setting of the DXF of AutoCAD data.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting class</see>.
  2734. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor"><summary>
  2735. Initializes a new instance of this ImportSettingDXF class.
  2736. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor(SuperMap.Data.Conversion.ImportSettingDXF)"><summary>
  2737. Initializes a new instance of the ImportSettingDXF class which is identical with the specified ImportSettingDXF object.
  2738. </summary><param name="importSettingDXF">the object used to initialize a new instance of the ImportSettingDXF class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2739. Initializes a new instance of the ImportSettingDXF class with the specified parameters.
  2740. </summary><param name="sourceFilePath">the source file path of the specified DXF data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2741. Initializes a new instance of the ImportSettingDXF class with the specified parameters.
  2742. </summary><param name="sourceFilePath">the source file path of the specified DXF data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  2743. Initializes a new instance of the ImportSettingDXF class with the specified parameters.
  2744. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  2745. Initializes a new instance of the ImportSettingDXF class with the specified parameters.
  2746. </summary><param name="sourceFilePath">the source file path of the specified DWG data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingDXF.SetShxPaths(System.String[])"><summary>
  2747. Set the path to the shx font path.
  2748. </summary><param name="arrField">Font library path array.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingAsCAD"><summary>
  2749. Gets or sets whether to import the DXF file to CAD dataset.The default value is true, represents importing it into CAD dataset, otherwise into the vector dataset.
  2750. </summary><value>The default value is true.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.SpatialIndex"><summary>
  2751. Gets or sets the information of the spatial index.
  2752. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingBlockAsPoint"><summary>
  2753. Gets or sets whether to import symbol block of DXF file to the point object or compound object.The default value is false, represents importing the point object, otherwise compound object.
  2754. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.IsLWPLineWidthIgnored"><summary>
  2755. Gets or sets whether to ignore the width of Polyline, the default is false.
  2756. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.CurveSegment"><summary>
  2757. Gets or sets the curve fitting precision, the default is 73.
  2758. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingExternalData"><summary>
  2759. Gets or sets whether to import external data, that is some extra field after importing the CAD data like attribute table, the default is false, or append the external data to the default field.
  2760. The extended array group code (1010 1020 1030) (1011 1021 1031) (1012 1022 1032) (1013 1023 1033). So if it appears 1010 1011 1012 1013, it will complete the group fields.
  2761. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingByLayer"><summary><para>Gets or sets whether to merge the layers of source CAD dataset to the imported data, where the CAD data is stored with the layer.The default value is false, which represents merging all the layers to one CAD dataset; otherwise imported each layer to a corresponding CAD dataset.</para><para>Note: Supported only when imported as CAD data.</para></summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingInvisibleLayer"><summary>
  2762. Gets or sets whether to import invisible layers, the default is false. Invisible layers are the layer set as invisible in CAD.
  2763. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.StyleMappingTableFile"><summary>
  2764. Gets or sets the style lookup table store path.
  2765. </summary><value>the default store path is: [Installation directory]/Bin/resource/stmi.stt.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.IsBlockAttributeIgnored"><summary>
  2766. Gets or sets whether to ignore the block attribute when import the data, the default is true, means ignore the block attribute.
  2767. </summary><value>The default value is true, that is ignore block attribute when importing.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.IsImportAs3D"><summary>
  2768. Gets or sets whether to import to a 3D dataset.
  2769. </summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.KeepingParametricPart"><summary>
  2770. Gets or sets whether to keep the parametric part of Acad data.
  2771. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.ImportingXRecord"><summary>
  2772. Gets or sets whether to import custom fields and attribute fields as extension records.
  2773. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingDXF.IsImportEmptyDataset"><summary>
  2774. Sets or gets whether to import the null dataset
  2775. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingE00"><summary>
  2776. The ImportSettingE00 class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  2777. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingE00.#ctor"><summary>
  2778. Initializes a new instance of this ImportSettingE00 class.
  2779. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingE00.#ctor(SuperMap.Data.Conversion.ImportSettingE00)"><summary>
  2780. Initializes a new instance of the ImportSettingE00 class which is identical with the specified ImportSettingE00 object.
  2781. </summary><param name="importSettingE00">the object used to initialize a new instance of the importSettingE00 class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingE00.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2782. Initializes a new instance of the importSettingE00 class according to the specified parameters.
  2783. </summary><param name="sourceFilePath">the source file path of the specified E00 data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingE00.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2784. Initializes a new instance of the importSettingE00 class according to the specified parameters.
  2785. </summary><param name="sourceFilePath">the source file path of the specified E00 data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingE00.SpatialIndex"><summary>
  2786. Gets or sets the information of the spatial index.
  2787. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingE00.IsAttributeIgnored"><summary>
  2788. Gets or sets whether to ignore attribute information when import E00 data. The default is false.
  2789. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingECW"><summary>
  2790. The ImportSettingECW class , which provides the information of imported setting of the GIRD data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2791. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingECW.#ctor"><summary>
  2792. Initializes a new instance of this ImportSettingECW class.
  2793. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingECW.#ctor(SuperMap.Data.Conversion.ImportSettingECW)"><summary>
  2794. Initializes a new instance of the ImportSettingECW class which is identical with the specified ImportSettingECW object.
  2795. </summary><param name="importSettingECW">the object used to initialize a new instance of the ImportSettingECW class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingECW.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2796. Initializes a new instance of the ImportSettingECW class with the specified parameters.
  2797. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingECW.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2798. Initializes a new instance of the ImportSettingECW class with the specified parameters.
  2799. </summary><param name="sourceFilePath">The source file path of the specified ECW data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingECW.ImportingAsGrid"><summary>
  2800. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  2801. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingECW.MultiBandImportMode"><summary>
  2802. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  2803. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingECW.IgnoreMode"><summary>
  2804. Gets or sets the IgnoreMode of ECW file.
  2805. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingECW.IgnoreValues"><summary>
  2806. Gets or sets the color values to ignore.
  2807. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingFileGDBVector"><summary>
  2808. The ImportSettingFileGDBVector class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  2809. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingFileGDBVector.#ctor"><summary>
  2810. Initializes a new instance of this ImportSettingGDBFVector class.
  2811. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingFileGDBVector.#ctor(SuperMap.Data.Conversion.ImportSettingFileGDBVector)"><summary>
  2812. The copy constructor, initializes a new instance of the ImportSettingGDBFVector class which is identical with the specified ImportSettingGDBFVector object.
  2813. </summary><param name="importSettingFileGDBFVector">the object used to initialize a new instance of the ImportSettingGDBFVector class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingFileGDBVector.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2814. Initializes a new instance of the ImportSettingGDBFVector class according to the specified parameters.
  2815. </summary><param name="sourceFilePath">the specified source file path of the imported data with GDB format.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingFileGDBVector.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2816. Initializes a new instance of the ImportSettingGDBFVector class according to the specified parameters.
  2817. </summary><param name="sourceFilePath">the specified source file path of the imported data with GDB format.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingFileGDBVector.SpatialIndex"><summary>
  2818. Gets or sets the information of the spatial index.
  2819. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingFileGDBVector.IsAttributeIgnored"><summary>
  2820. Gets or sets whether to ignore attribute information when import SDEVector data. The default is false.
  2821. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingFileGDBVector.IsImportEmptyDataset"><summary>
  2822. Sets or gets whether to import the null dataset
  2823. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingGBDEM"><summary>
  2824. The ImportSettingGBDEM class.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2825. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGBDEM.#ctor"><summary>
  2826. Initializes a new instance of this ImportSettingUSGSDEM class.
  2827. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGBDEM.#ctor(SuperMap.Data.Conversion.ImportSettingGBDEM)"><summary>
  2828. Initializes a new instance of the ImportSettingGBDEM class which is identical with the specified ImportSettingGBDEM object.
  2829. </summary><param name="importSettingGBDEM">the object used to initialize a new instance of the ImportSettingGBDEM class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGBDEM.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2830. Initializes a new instance of the ImportSettingGBDEM class with the specified parameters.
  2831. </summary><param name="sourceFilePath">The path of the GB DEM data source file specified to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGBDEM.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2832. Initializes a new instance of the ImportSettingGBDEM class with the specified parameters.
  2833. </summary><param name="sourceFilePath">The path of the GB DEM data source file specified to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGBDEM.IsPyramidBuilt"><summary>
  2834. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2835. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGBDEM.IgnoreMode"><summary>
  2836. Gets or sets the IgnoreMode of GB DEM data file.
  2837. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGBDEM.IgnoreValues"><summary>
  2838. Gets or sets the color values to ignore.
  2839. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingGeoJson"><summary>
  2840. The ImportSettingGeoJson class.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2841. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGeoJson.#ctor"><summary>
  2842. Initializes a new instance of this ImportSettingGeoJson class.
  2843. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGeoJson.#ctor(SuperMap.Data.Conversion.ImportSettingGeoJson)"><summary>
  2844. Copy constructor, initializes a new instance of the ImportSettingGeoJson class which is identical with the specified ImportSettingGeoJson object.
  2845. </summary><param name="importSettingGeoJson">the object used to initialize a new instance of the importSettingGeoJson class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGeoJson.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2846. Initializes a new instance of the ImportSettingGeoJson class with the specified parameters.
  2847. </summary><param name="sourceFilePath">the source file path of the specified GeoJson data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGeoJson.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2848. Initializes a new instance of the ImportSettingGeoJson class with the specified parameters.
  2849. </summary><param name="sourceFilePath">the source file path of the specified GeoJson data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGeoJson.IsImportEmptyDataset"><summary>
  2850. Sets or gets whether to import the null dataset
  2851. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGeoJson.ImportingAsCAD"><summary>
  2852. Gets or sets the export mode. true, if a CAD dataset is imported, otherwise the corresponding simple vector dataset will be imported.
  2853. </summary><value>Import mode, that is, the target dataset type, defaults to true, that is, into a CAD dataset, otherwise it is a simple vector dataset of the data type.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingGIF"><summary>
  2854. The ImportSettingGIF class, which provides the information of imported setting of the GIF data.This class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2855. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGIF.#ctor"><summary>
  2856. Initializes a new instance of this ImportSettingGIF class.
  2857. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGIF.#ctor(SuperMap.Data.Conversion.ImportSettingGIF)"><summary>
  2858. Initializes a new instance of the ImportSettingGIF class which is identical with the specified ImportSettingGIF object.
  2859. </summary><param name="importSettingGIF">the object used to initialize a new instance of the ImportSettingGIF class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGIF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2860. Initializes a new instance of the ImportSettingGIF class with the specified parameters.
  2861. </summary><param name="sourceFilePath">the specified source file path of the target data with GIF format.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGIF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2862. Initializes a new instance of the ImportSettingGIF class with the specified parameters.
  2863. </summary><param name="sourceFilePath">the source file path of the specified GIF data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGIF.ImportingAsGrid"><summary>
  2864. Gets or sets whether to import to the grid dataset.The default value is false, represents importing it to image dataset.
  2865. </summary><value>The default is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGIF.IsPyramidBuilt"><summary>
  2866. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2867. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGIF.WorldFilePath"><summary>
  2868. Gets or sets the path of the coordinates of the images.
  2869. </summary><value>The default value is String.Empty.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGIF.IgnoreMode"><summary>
  2870. Gets or sets the IgnoreMode of GIF file.
  2871. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGIF.IgnoreValues"><summary>
  2872. Gets or sets the color values to ignore.
  2873. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingGJB"><summary>
  2874. The ImportSettingGJB class.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2875. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGJB.#ctor"><summary>
  2876. Initializes a new instance of thisImportSettingGJB class.
  2877. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGJB.#ctor(SuperMap.Data.Conversion.ImportSettingGJB)"><summary>
  2878. Copy constructor, initializes a new instance of the ImportSettingGJB class which is identical with the specified ImportSettingGJB object.
  2879. </summary><param name="importSettingGJB">the object used to initialize a new instance of the ImportSettingGJB class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGJB.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2880. Initializes a new instance of the ImportSettingGJB class with the specified parameters.
  2881. </summary><param name="sourceFilePath">The source file path of the specified GJB data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGJB.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2882. Initializes a new instance of the ImportSettingGJB class with the specified parameters.
  2883. </summary><param name="sourceFilePath">The source file path of the specified GJB data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGJB.SetImportLayerName(System.String[])"><summary>Set the layers to be imported.</summary><param name="layerNames">To import a layer name array.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGJB.IsImportEmptyDataset"><summary>
  2884. Sets or gets whether to import the null dataset
  2885. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGJB.SpatialIndex"><summary>
  2886. Set or get spatial index information, and after the setting a spatial index will be created when importing .
  2887. </summary><value>The default value is null.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingGML"><summary>
  2888. The ImportSettingGMLclass. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  2889. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGML.#ctor"><summary>
  2890. Initializes a new instance of this ImportSettingGML class.
  2891. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGML.#ctor(SuperMap.Data.Conversion.ImportSettingGML)"><summary>
  2892. Copy constructor, initializes a new instance of the ImportSettingGML class which is identical with the specified ImportSettingGML object.
  2893. </summary><param name="importSettingGML">the object used to initialize a new instance of the importSettingGML class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGML.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2894. Initializes a new instance of the ImportSettingGML class with the specified parameters.
  2895. </summary><param name="sourceFilePath">the source file path of the specified GML data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGML.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2896. Initializes a new instance of the ImportSettingGML class with the specified parameters.
  2897. </summary><param name="sourceFilePath">the source file path of the specified GML data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGML.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  2898. Initializes a new instance of the ImportSettingGML class with the specified parameters.
  2899. </summary><param name="sourceFilePath">the source file path of the specified GML data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param><param name="importingAsCAD">whether to import with CAD format.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGML.SpatialIndex"><summary>
  2900. Gets or sets the information of the spatial index.
  2901. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGML.IsAttributeIgnored"><summary>
  2902. Gets or sets whether to ignore attribute information when import GML data. The default is false.
  2903. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGML.ImportingAsCAD"><summary>
  2904. Gets or sets whether to import the DXF file to CAD dataset.The default value is true, represents importing it into CAD dataset, otherwise into the vector dataset.
  2905. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGML.ImportingByLayer"><summary>
  2906. Gets or sets whether to merge the layers of source CAD dataset to the imported data, where the CAD data is stored with the layer.The default value is false, which represents merging all the layers to one CAD dataset; otherwise imported each layer to a corresponding CAD dataset.
  2907. </summary><value>The default value is false, that means merge all the layer information to one CAD dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGML.IsImportEmptyDataset"><summary>
  2908. Sets or gets whether to import the null dataset
  2909. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingGPKG"><summary>
  2910. The ImportSettingGMOGC Geopackage class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  2911. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGPKG.#ctor"><summary>
  2912. Initializes a new instance of the ImportSettingGPKG class.
  2913. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGPKG.#ctor(SuperMap.Data.Conversion.ImportSettingGPKG)"><summary>
  2914. Copy constructor, initializes a new instance of the ImportSettingGPKG class which is identical with the specified ImportSettingGPKG object.
  2915. </summary><param name="importSettingGPKG">the object used to initialize a new instance of the ImportSettingGPKG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGPKG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2916. Initializes a new instance of the ImportSettingGPKG class with the specified parameters.
  2917. </summary><param name="sourceFilePath">The source file path of the specified Geopackage data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGPKG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2918. Initializes a new instance of the ImportSettingGPKG class with the specified parameters.
  2919. </summary><param name="sourceFilePath">The source file path of the specified Geopackage data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGPKG.SpatialIndex"><summary>
  2920. Gets or sets the spatial index information of the imported Geopackage data.
  2921. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGPKG.IsAttributeIgnored"><summary>
  2922. Gets or sets whether or not to ignore the attribute information of the data when importing Geopackage vector format data. The default is false, that does not ignore the data attributes.
  2923. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGPKG.IsImportEmptyDataset"><summary>
  2924. Sets or gets whether to import the null dataset
  2925. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingGRD"><summary>
  2926. The ImportSettingGRD class , which provides the information of imported setting of the GIRD data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2927. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRD.#ctor"><summary>
  2928. Initializes a new instance of this ImportSettingGRD class.
  2929. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRD.#ctor(SuperMap.Data.Conversion.ImportSettingGRD)"><summary>
  2930. Initializes a new instance of the ImportSettingGRD class which is identical with the specified ImportSettingGRD object.
  2931. </summary><param name="importSettingGRD">the object used to initialize a new instance of the ImportSettingGRD class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRD.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2932. Initializes a new instance of the ImportSettingGRD class with the specified parameters.
  2933. </summary><param name="sourceFilePath">the source file path of the specified GRD data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRD.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2934. Initializes a new instance of the ImportSettingGRD class with the specified parameters.
  2935. </summary><param name="sourceFilePath">the source file path of the specified GRD data to be imported.</param><param name="targetDatasource">The specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRD.IsPyramidBuilt"><summary>
  2936. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2937. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRD.IgnoreMode"><summary>
  2938. Gets or sets the IgnoreMode of GRD file.
  2939. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRD.IgnoreValues"><summary>
  2940. Gets or sets the color values to ignore.
  2941. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingGRIB"><summary>
  2942. The ImportSettingModelGrib1 and mportSettingModelGrib2 inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2943. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRIB.#ctor"><summary>
  2944. Initializes a new instance of this ImportSettingGRIB class.
  2945. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRIB.#ctor(SuperMap.Data.Conversion.ImportSettingGRIB)"><summary>
  2946. Initializes a new instance of the ImportSettingGRIB class which is identical with the specified ImportSettingGRD object.
  2947. </summary><param name="importSettingGRIB">the object used to initialize a new instance of the ImportSettingGRIB class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRIB.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2948. Initializes a new instance of the ImportSettingGRIB class with the specified parameters.
  2949. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingGRIB.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2950. Initializes a new instance of the ImportSettingGRIB class with the specified parameters.
  2951. </summary><param name="sourceFilePath">The source file path of the specified GRIB data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRIB.ImportingAsGrid"><summary>
  2952. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  2953. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRIB.IsPyramidBuilt"><summary>
  2954. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2955. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRIB.MultiBandImportMode"><summary>
  2956. Get or set multi-band import mode, can be imported into multiple single-band data sets or a single multi-band data set.
  2957. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRIB.IgnoreMode"><summary>
  2958. Gets or sets the pattern of Grib1 and Grib2 meteorological data files that ignore color values.
  2959. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingGRIB.IgnoreValues"><summary>
  2960. Gets or sets the color values to ignore.
  2961. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingIMG"><summary>
  2962. The ImportSettingIMG class, which provides the information of imported setting of the IMG data.This class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2963. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingIMG.#ctor"><summary>
  2964. Initializes a new instance of this ImportSettingIMG class.
  2965. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingIMG.#ctor(SuperMap.Data.Conversion.ImportSettingIMG)"><summary>
  2966. Initializes a new instance of the ImportSettingIMG class which is identical with the specified ImportSettingIMG object.
  2967. </summary><param name="importSettingIMG">The object used to initialize a new instance of the ImportSettingIMG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingIMG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2968. Initializes a new instance of the ImportSettingIMG class with the specified parameters.
  2969. </summary><param name="sourceFilePath">the specified source file path of the GIF format data.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingIMG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2970. Initializes a new instance of the ImportSettingIMG class with the specified parameters.
  2971. </summary><param name="sourceFilePath">the specified source file path of the GIF format data.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingIMG.ImportingAsGrid"><summary>
  2972. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  2973. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingIMG.IsPyramidBuilt"><summary>
  2974. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  2975. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingIMG.MultiBandImportMode"><summary>
  2976. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  2977. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingIMG.IgnoreMode"><summary>
  2978. Gets or sets the IgnoreMode of Erdas Image file.
  2979. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingIMG.IgnoreValues"><summary>
  2980. Gets or sets the color values to ignore.
  2981. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingJP2"><summary>
  2982. The ImportSettingJP2 class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2983. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingJP2.#ctor"><summary>
  2984. Initializes a new instance of this ImportSettingJP2 class.
  2985. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingJP2.#ctor(SuperMap.Data.Conversion.ImportSettingJP2)"><summary>
  2986. Initializes a new instance of the ImportSettingJP2 class which is identical with the specified ImportSettingJP2 object.
  2987. </summary><param name="importSettingJP2">The object used to initialize a new instance of the ImportSettingJP2 class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingJP2.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  2988. Initializes a new instance of the ImportSettingJP2 class with the specified parameters.
  2989. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingJP2.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  2990. Initializes a new instance of the ImportSettingJP2 class with the specified parameters.
  2991. </summary><param name="sourceFilePath">The source file path of the specified JP2 data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingJP2.ImportingAsGrid"><summary>
  2992. Gets or sets whether to import to a <see cref="F:SuperMap.Data.DatasetType.Grid">3D</see> dataset.
  2993. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingJP2.IgnoreMode"><summary>
  2994. Gets or sets the IgnoreMode of JP2 file.
  2995. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingJP2.IgnoreValues"><summary>
  2996. Gets or sets the color values to ignore.
  2997. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingJPG"><summary>
  2998. The ImportSettingJPG class , which provides the information of imported setting of the JPG data.This class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  2999. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingJPG.#ctor"><summary>
  3000. Initializes a new instance of this ImportSettingJPG class.
  3001. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingJPG.#ctor(SuperMap.Data.Conversion.ImportSettingJPG)"><summary>
  3002. Initializes a new instance of the ImportSettingJPG class which is identical with the specified ImportSettingJPG object.
  3003. </summary><param name="importSettingJPG">the object used to initialize a new instance of the ImportSettingJPG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingJPG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3004. Initializes a new instance of the ImportSettingJPG class with the specified parameters.
  3005. </summary><param name="sourceFilePath">The specified source file path of the target data with JPG format.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingJPG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3006. Initializes a new instance of the ImportSettingJPG class with the specified parameters.
  3007. </summary><param name="sourceFilePath">the source file path of the specified JPG data to be imported.</param><param name="targetDatasource">The specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.ImportingAsGrid"><summary>
  3008. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  3009. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.IsPyramidBuilt"><summary>
  3010. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3011. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.WorldFilePath"><summary>
  3012. Gets or sets the path of the coordinates of the images.
  3013. </summary><value>The default value is String.Empty.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.MultiBandImportMode"><summary>
  3014. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  3015. <para>This interface is available only when there are FME license.</para></summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.Composite">Composite</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.IgnoreMode"><summary>
  3016. Gets or sets the IgnoreMode of JPG file.
  3017. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingJPG.IgnoreValues"><summary>
  3018. Gets or sets the color values to ignore.
  3019. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingKML"><summary>
  3020. This class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3021. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingKML.#ctor"><summary>
  3022. Initializes a new instance of this ImportSettingKML class.
  3023. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingKML.#ctor(SuperMap.Data.Conversion.ImportSettingKML)"><summary>
  3024. Initializes a new instance of the ImportSettingKML class which is identical with the specified ImportSettingKML object.
  3025. </summary><param name="importSettingKML">The object used to initialize a new instance of the ImportSettingKML class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKML.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3026. Initializes a new instance according to the specified parameters.
  3027. </summary><param name="sourceFilePath">The source file path of the specified KML data to be imported. </param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKML.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  3028. Initializes a new instance according to the specified parameters.
  3029. </summary><param name="sourceFilePath">The source file path of the specified KML data to be imported. </param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object. </param><param name="importingAsCAD">The import mode. true, if a CAD dataset is imported, otherwise the corresponding simple vector dataset will be imported. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKML.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  3030. Initializes a new instance according to the specified parameters.
  3031. </summary><param name="sourceFilePath">The source file path of the specified KML data to be imported. </param><param name="targetDatasource">The imported target datasource. </param><param name="importingAsCAD">The import mode. true, if a CAD dataset is imported, otherwise the corresponding simple vector dataset will be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingKML.ImportingAsCAD"><summary>
  3032. Gets or sets the mode of importing.Default value is true, this is importingCADdataset, otherwise the corresponding simple vector dataset will be imported.
  3033. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingKML.UnvisibleObjectIgnored"><summary>
  3034. Gets or sets whether the invisible object is ignored. Default value is false, this is the invisible object is imported.
  3035. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingKML.IsImportEmptyDataset"><summary>
  3036. Sets or gets whether to import the null dataset
  3037. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingKMZ"><summary>
  3038. The ImportSettingKMZ class. This class is inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3039. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingKMZ.#ctor"><summary>
  3040. Initializes a new instance of this ImportSettingKMZ class.
  3041. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingKMZ.#ctor(SuperMap.Data.Conversion.ImportSettingKMZ)"><summary>
  3042. Initializes a new instance of the ImportSettingKMZ class which is identical with the specified ImportSettingKMZ object.
  3043. </summary><param name="importSettingKMZ">The object used to initialize a new instance of the ImportSettingKMZ class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKMZ.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3044. Initializes a new instance of the ImportSettingKMZ class with the specified parameters.
  3045. </summary><param name="sourceFilePath">the path of the specified KMZ format data source file.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKMZ.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  3046. Initializes a new instance of the ImportSettingKMZ class with the specified parameters.
  3047. </summary><param name="sourceFilePath">the path of the specified KMZ format data source file.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param><param name="importingAsCAD">The import mode. true, if a CAD dataset is imported, otherwise the corresponding simple vector dataset will be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingKMZ.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  3048. Initializes a new instance of the ImportSettingKMZ class with the specified parameters.
  3049. </summary><param name="sourceFilePath">the path of the specified KMZ format data source file.</param><param name="targetDatasource">The imported target datasource.</param><param name="importingAsCAD">The import mode. true, if a CAD dataset is imported, otherwise the corresponding simple vector dataset will be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingKMZ.ImportingAsCAD"><summary>
  3050. Gets or sets the export mode. true, if a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset is imported, otherwise the corresponding simple vector dataset will be imported.
  3051. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingKMZ.UnvisibleObjectIgnored"><summary>
  3052. Gets or sets whether the invisible object is ignored. Default value is false, this is the invisible object is imported.
  3053. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingKMZ.IsImportEmptyDataset"><summary>
  3054. Sets or gets whether to import the null dataset
  3055. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingLIDAR"><summary>
  3056. The ImportSettingLIDAR class. Only supports the importing of LIDAR data in ASCII format. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3057. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingLIDAR.#ctor"><summary>
  3058. Initializes a new instance of this ImportSettingLIDAR class.
  3059. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingLIDAR.#ctor(SuperMap.Data.Conversion.ImportSettingLIDAR)"><summary>
  3060. Initializes a new instance of the ImportSettingLIDAR class which is identical with the specified ImportSettingLIDAR object.
  3061. </summary><param name="importSettingLIDAR">the object used to initialize a new instance of the ImportSettingLIDAR class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingLIDAR.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3062. Initializes a new instance of the ImportSettingLIDAR class with the specified parameters.
  3063. </summary><param name="sourceFilePath">The path of the ImportSettingLIDAR data source file specified to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingLIDAR.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3064. Initializes a new instance of the ImportSettingLIDAR class with the specified parameters.
  3065. </summary><param name="sourceFilePath">The path of the ImportSettingLIDAR data source file specified to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingLIDAR.IsImportAs3D"><summary>
  3066. Gets or sets whether to import to a 3D dataset.
  3067. </summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingLIDAR.IsAttributeIgnored"><summary>
  3068. Gets or sets whether to ignore the block attribute when import the data, the default is true, means ignore the block attribute.
  3069. </summary><value>
  3070. The default is true.
  3071. </value></member><member name="P:SuperMap.Data.Conversion.ImportSettingLIDAR.SpatialIndex"><summary>
  3072. Gets or sets the information of the spatial index.
  3073. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingMAPGIS"><summary>
  3074. The ImportSettingMAPGIS class. The class inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3075. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMAPGIS.#ctor"><summary>
  3076. Initializes a new instance of this ImportSettingMAPGIS class.
  3077. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMAPGIS.#ctor(SuperMap.Data.Conversion.ImportSettingMAPGIS)"><summary>
  3078. Initializes a new instance of the ImportSettingMAPGIS class which is identical with the specified ImportSettingMAPGIS object.
  3079. </summary><param name="ImportSetting">The object used to initialize a new instance of the ImportSettingMAPGIS class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMAPGIS.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3080. Initializes a new instance of the class according to the specified parameters.
  3081. </summary><param name="sourceFilePath">The source file path of the specified MAPGIS data to be imported. </param><param name="targetConnectionInfo">The specified target datasource connection information object. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMAPGIS.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,System.Boolean)"><summary>
  3082. Initializes a new instance of the class according to the specified parameters.
  3083. </summary><param name="sourceFilePath">The source file path of the specified MAPGIS data to be imported. </param><param name="targetConnectionInfo">The specified target datasource connection information object. </param><param name="importingAsCAD">The specified import mode, namely the target data set types. The true means to import to CAD data set; the false means to import to a simple vector data set. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMAPGIS.#ctor(System.String,SuperMap.Data.Datasource,System.Boolean)"><summary>
  3084. Initializes a new instance of the class according to the specified parameters.
  3085. </summary><param name="sourceFilePath">The source file path of the specified MAPGIS data to be imported. </param><param name="targetDatasource">The specified target datasource to be imported. </param><param name="importingAsCAD">The specified import mode, namely the target data set types. The true means to import to CAD data set; the false means to import to a simple vector data set. </param></member><member name="P:SuperMap.Data.Conversion.ImportSettingMAPGIS.ImportingAsCAD"><summary>
  3086. Gets or sets the export mode. true, if a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset is imported, otherwise the corresponding simple vector dataset will be imported.
  3087. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingMAPGIS.ImportNetworkTopology"><summary>
  3088. Sets or gets whether to import the network dataset
  3089. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingMAPGIS.ColorIndexFilePath"><summary>
  3090. Gets or sets the color index file path when import MAPGIS data, the default file path is MapGISColor.wat in the system path.
  3091. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingMIF"><summary>
  3092. The ImportSettingMIF class, which provides the information of imported setting of the MIF data.It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3093. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMIF.#ctor"><summary>
  3094. Initializes a new instance of this ImportSettingMIF class.
  3095. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMIF.#ctor(SuperMap.Data.Conversion.ImportSettingMIF)"><summary>
  3096. Initializes a new instance of the ImportSettingMIF class which is identical with the specified ImportSettingMIF object.
  3097. </summary><param name="ImportSettingMIF">the object used to initialize a new instance of the ImportSettingMIF class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMIF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3098. Initializes a new instance of the ImportSettingMIF class with the specified parameters.
  3099. </summary><param name="sourceFilePath">the source file path of the specified MIF data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMIF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3100. Initializes a new instance of the ImportSettingMIF class with the specified parameters.
  3101. </summary><param name="sourceFilePath">the source file path of the specified MIF data to be imported.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingMIF.ImportingAsCAD"><summary>
  3102. Gets or sets the mode of importing the MIF file, the format of the output dataset.The default value is true, represents importing it to CAD dataset, otherwise to the vector dataset.
  3103. </summary><value>The default value is true.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingMIF.SpatialIndex"><summary>
  3104. Gets or sets the spatial index information of the imported MIF data.
  3105. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingMIF.IsAttributeIgnored"><summary>
  3106. Gets or sets whether to ignore attributes when import MIF data, including vector attribute information and raster attribute table. The default is false.
  3107. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingMIF.StyleMappingTableFile"><summary>
  3108. Gets or sets the style lookup table file path.
  3109. </summary><value>the default store path is: [Installation directory]/Bin/resource/stmi.stt.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingModelDXF"><summary>
  3110. The ImportSettingModelDXF inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3111. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelDXF.#ctor"><summary>
  3112. Initializes a new instance of this ImportSettingModelDXF class.
  3113. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelDXF.#ctor(SuperMap.Data.Conversion.ImportSettingModelDXF)"><summary>
  3114. Initializes a new instance of the ImportSettingModelDXF class which is identical with the specified ImportSettingModelDXF object.
  3115. </summary><param name="importSettingModelDXF">The object used to initialize a new instance of the ImportSettingModelDXF class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelDXF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3116. Initializes a new ImportSettingModelDXF instance according to the specified parameters.
  3117. </summary><param name="sourceFilePath">The path of the DXF 3D model file to import.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelDXF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3118. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3119. </summary><param name="sourceFilePath">The path of the DXF 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelDXF.Position"><summary>
  3120. Gets or sets the position of the model to import.
  3121. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelDXF.ImportingAsCAD"><summary>
  3122. Gets or sets the schema that imports the ModelDXF format data (currently the ModelDXF model data only supports importing the model dataset,and does not support importing as a CAD dataset, and fails if the import is true).
  3123. </summary><value>The default value is false, which is imported as a model dataset, otherwise it is a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelDXF.Decompose"><summary>
  3124. Gets or sets whether to import ModelDXF format data for scatter storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3125. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingModelFBX"><summary>
  3126. The ImportSettingModelFBX inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3127. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFBX.#ctor"><summary>
  3128. Initializes a new instance of this ImportSettingModelFBX class.
  3129. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFBX.#ctor(SuperMap.Data.Conversion.ImportSettingModelFBX)"><summary>
  3130. Initializes a new instance of the ImportSettingModelFBX class which is identical with the specified ImportSettingModelFBX object.
  3131. </summary><param name="importSettingModelFBX">The object used to initialize a new instance of the ImportSettingModelFBX class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFBX.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3132. Initializes a new ImportSettingModelFBX instance according to the specified parameters.
  3133. </summary><param name="sourceFilePath">The path of the FBX 3D model file to import.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFBX.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3134. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3135. </summary><param name="sourceFilePath">The path of the FBX 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFBX.Position"><summary>
  3136. Gets or sets the position of the model to import.
  3137. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFBX.ImportingAsCAD"><summary>
  3138. Gets or sets the schema that imports the ModelFBX format data (currently the ModelFBX model data only supports importing the model dataset,and does not support importing as a CAD dataset, and fails if the import is true).
  3139. </summary><value>The default value is false, which is imported as a model dataset, otherwise it is a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFBX.Decompose"><summary>
  3140. Gets or sets whether to import ModelFBX format data for scatter storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3141. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingModelFLT"><summary>
  3142. The ImportSettingModelFLT inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3143. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFLT.#ctor"><summary>
  3144. Initializes a new instance of this ImportSettingModelFLT class.
  3145. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFLT.#ctor(SuperMap.Data.Conversion.ImportSettingModelFLT)"><summary>
  3146. Initializes a new instance of the ImportSettingModelFLT class which is identical with the specified ImportSettingModelFLT object.
  3147. </summary><param name="importSettingModelFLT">The object used to initialize a new instance of the ImportSettingModelFLT class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFLT.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3148. Initializes a new ImportSettingModelFLT instance according to the specified parameters.
  3149. </summary><param name="sourceFilePath">The path of the FLT 3D model file to import.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelFLT.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3150. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3151. </summary><param name="sourceFilePath">The path of the FLT 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFLT.Position"><summary>
  3152. Gets or sets the position of the model to import.
  3153. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFLT.ImportingAsCAD"><summary>
  3154. Gets or sets the schema that imports the ModelFLT format data (currently the ModelFLT model data only supports importing the model dataset,and does not support importing as a CAD dataset, and fails if the import is true).
  3155. </summary><value>The default value is false, which is imported as a model dataset, otherwise it is a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelFLT.Decompose"><summary>
  3156. Gets or sets whether to import ModelFLT format data for scatter storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3157. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingModelOSG"><summary>
  3158. The ImportSettingModelOSG inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3159. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelOSG.#ctor"><summary>
  3160. Initializes a new instance of this ImportSettingModelOSG class.
  3161. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelOSG.#ctor(SuperMap.Data.Conversion.ImportSettingModelOSG)"><summary>
  3162. Initializes a new instance of the ImportSettingModelOSG class which is identical with the specified ImportSettingModelOSG object.
  3163. </summary><param name="importSettingModelOSG">The object used to initialize a new instance of the ImportSettingModelOSG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelOSG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3164. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3165. </summary><param name="sourceFilePath">The path of the OSG/OSGB 3D model file to import.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelOSG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3166. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3167. </summary><param name="sourceFilePath">The path of the OSG/OSGB 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelOSG.Position"><summary>
  3168. Gets or sets the position of the model to import.
  3169. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelOSG.ImportingAsCAD"><summary>
  3170. Gets or sets the schema that imports the ModelOSG format data (currently the ModelOSGmodel data only supports importing the model dataset,and does not support importing as a CAD dataset, and fails if the import is true).
  3171. </summary><value>The default value is false, which is imported as a model dataset, otherwise it is a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelOSG.Decompose"><summary>
  3172. Gets or sets whether to import ModelOSG format data for scatter storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3173. </summary><value>The default value is false.</value></member>
  3174.         <member name="T:SuperMap.Data.Conversion.ImportSettingModelS3M">
  3175.             <summary>
  3176.             Parameter setting class for S3M 3D model file import. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3177.             </summary>
  3178.         </member>
  3179.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3M.#ctor">
  3180.             <summary>
  3181.             The default constructor constructs a new ImportSettingModelS3M object.
  3182.             </summary>
  3183.         </member>
  3184.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3M.#ctor(SuperMap.Data.Conversion.ImportSettingModelS3M)">
  3185.             <summary>
  3186.             The copy constructor constructs a new object identical to the given ImportSettingModelS3M object.
  3187.             </summary>
  3188.             <param name="importSettingModelS3m">The object used to initialize a new instance of ImportSettingModelS3M. </param>
  3189.         </member>
  3190.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3M.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)">
  3191.             <summary>
  3192.             Constructs a new instance of the ImportSettingModelS3M class based on the specified parameters.
  3193.             </summary>
  3194.             <param name="sourceFilePath">Specify the path to the imported S3M 3D model file. </param>
  3195.             <param name="targetConnectionInfo">Specifies the imported target data source connection information object. </param>
  3196.         </member>
  3197.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3M.#ctor(System.String,SuperMap.Data.Datasource)">
  3198.             <summary>
  3199.             Constructs a new instance of the ImportSettingModelS3M class based on the specified parameters.
  3200.             </summary>
  3201.             <param name="sourceFilePath">Specify the path to the imported S3M 3D model file. </param>
  3202.             <param name="targetDatasource">Specifies the imported target data source object. </param>
  3203.         </member>
  3204.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3M.Decompose">
  3205.             <summary>
  3206.             Gets or sets whether to import the ModelS3M format data to break up storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3207.             </summary>
  3208.         </member>
  3209.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3M.ImportingAsCAD">
  3210.             <summary>
  3211.             Gets or sets the mode for importing data in ModelS3M format. (Currently ModelS3M model data only supports importing model datasets. Importing to CAD datasets is not supported. If set to true, import will fail).
  3212.             </summary></member>
  3213.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3M.Position">
  3214.             <summary>
  3215.             Gets or sets the anchor point of the imported model.
  3216.             </summary>
  3217.             
  3218.         </member>
  3219.         <member name="T:SuperMap.Data.Conversion.ImportSettingModelS3MB">
  3220.             <summary>
  3221.             Parameter setting class for S3MB 3D model file import. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3222.             </summary>
  3223.         </member>
  3224.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3MB.#ctor">
  3225.             <summary>
  3226.             The default constructor constructs a new ImportSettingModelS3MB object.
  3227.             </summary>
  3228.         </member>
  3229.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3MB.#ctor(SuperMap.Data.Conversion.ImportSettingModelS3MB)">
  3230.             <summary>
  3231.             The copy constructor constructs a new object identical to the given ImportSettingModelS3MB object.
  3232.             </summary>
  3233.             <param name="importSettingModelS3mb">The object used to initialize a new instance of ImportSettingModelS3MB. </param>
  3234.         </member>
  3235.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3MB.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)">
  3236.             <summary>
  3237.             Constructs a new instance of the ImportSettingModelS3MB class based on the specified parameters.
  3238.             </summary>
  3239.             <param name="sourceFilePath">Specify the path to the imported S3MB 3D model file. </param>
  3240.             <param name="targetConnectionInfo">Specifies the imported target data source connection information object. </param>
  3241.         </member>
  3242.         <member name="M:SuperMap.Data.Conversion.ImportSettingModelS3MB.#ctor(System.String,SuperMap.Data.Datasource)">
  3243.             <summary>
  3244.             Constructs a new instance of the ImportSettingModelS3MB class based on the specified parameters.
  3245.             </summary>
  3246.             <param name="sourceFilePath">Specify the path to the imported S3MB 3D model file. </param>
  3247.             <param name="targetDatasource">Specifies the imported target data source object. </param>
  3248.         </member>
  3249.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3MB.Decompose">
  3250.             <summary>
  3251.             Gets or sets whether to import the ModelS3MB format data to break up storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3252.             </summary>
  3253.         </member>
  3254.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3MB.ImportingAsCAD">
  3255.             <summary>
  3256.             Get or set the mode for importing data in ModelS3MB format. (Currently ModelS3M model data only supports importing model datasets. Importing to CAD datasets is not supported. If set to true, import will fail).
  3257.             </summary>
  3258.         </member>
  3259.         <member name="P:SuperMap.Data.Conversion.ImportSettingModelS3MB.Position">
  3260.             <summary>
  3261.             Gets or sets the anchor point of the imported model.
  3262.             </summary>
  3263.             
  3264.         </member>
  3265.         <member name="T:SuperMap.Data.Conversion.ImportSettingModelX">
  3266.             <summary>
  3267. The ImportSettingModelX inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3268. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelX.#ctor"><summary>
  3269. Initializes a new instance of this ImportSettingModelX class.
  3270. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelX.#ctor(SuperMap.Data.Conversion.ImportSettingModelX)"><summary>
  3271. Initializes a new instance of the ImportSettingModelX class which is identical with the specified ImportSettingModelX object.
  3272. </summary><param name="importSettingModelX">The object used to initialize a new instance of the ImportSettingModelX class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelX.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3273. Initializes a new ImportSettingModelX instance according to the specified parameters.
  3274. </summary><param name="sourceFilePath">The path of the X 3D model file to import.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModelX.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3275. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3276. </summary><param name="sourceFilePath">The path of the X 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelX.Position"><summary>
  3277. Gets or sets the position of the model to import.
  3278. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelX.ImportingAsCAD"><summary>
  3279. Gets or sets the mode of importing the ModelX file, the format of the import dataset.The default value is false, represents importing it to simple vector dataset, otherwise to the <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.
  3280. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingModelX.Decompose"><summary>
  3281. Gets or sets whether to import ModelX format data for scatter storage, that is, each Geode in Mode is stored as a GeoMode3D object.
  3282. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingMrSID"><summary>
  3283. The ImportSettingMrSID class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3284. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMrSID.#ctor"><summary>
  3285. Initializes a new instance of this ImportSettingMrSID class.
  3286. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingMrSID.#ctor(SuperMap.Data.Conversion.ImportSettingMrSID)"><summary>
  3287. Initializes a new instance of the ImportSettingMrSID class which is identical with the specified ImportSettingMrSID object.
  3288. </summary><param name="importSettingMrSID">The object used to initialize a new instance of the ImportSettingMrSID class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMrSID.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3289. Initializes a new instance of ImportSettingMrSID class according to the specified parameters.
  3290. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingMrSID.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3291. Initializes a new instance of ImportSettingMrSID class according to the specified parameters.
  3292. </summary><param name="sourceFilePath">The source file path of the specified MrSID data to be imported.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingMrSID.ImportingAsGrid"><summary>
  3293. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  3294. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingMrSID.MultiBandImportMode"><summary>
  3295. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  3296. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingMrSID.IgnoreMode"><summary>
  3297. Gets or sets the IgnoreMode of MrSID file.
  3298. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingMrSID.IgnoreValues"><summary>
  3299. Gets or sets the color values to ignore.
  3300. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingOrangeTab"><summary>
  3301. The ImportSettingOrange Tab Geopackage class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3302. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingOrangeTab.#ctor"><summary>
  3303. Initializes a new instance of this ImportSettingOrangeTab class.
  3304. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingOrangeTab.#ctor(SuperMap.Data.Conversion.ImportSettingOrangeTab)"><summary>
  3305. Copy constructor, initializes a new instance of the ImportSettingOrangeTab class which is identical with the specified ImportSettingOrangeTab object.
  3306. </summary><param name="importSettingOrangeTab">the object used to initialize a new instance of the ImportSettingOrangeTab class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingOrangeTab.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3307. Initializes a new instance of the ImportSettingOrangeTab class with the specified parameters.
  3308. </summary><param name="sourceFilePath">The source file path of the specified Orange Tab data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingOrangeTab.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3309. Initializes a new instance of the ImportSettingOrangeTab class with the specified parameters.
  3310. </summary><param name="sourceFilePath">The source file path of the specified Orange Tab data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingOrangeTab.SetFieldsAsPoint(System.String[])"><summary>
  3311. Set the specified fields to X, Y, or X, Y, Z coordinates, and if the conditions are met, a point or 3D point dataset is generated.
  3312. </summary><param name="arrField">Specifies the set of fields whose size is 2 or 3.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingOrangeTab.SpatialIndex"><summary>
  3313. Gets or sets the spatial index information of the imported Orange Tab data.
  3314. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingOrangeTab.IsAttributeIgnored"><summary>
  3315. Gets or sets whether or not to ignore the attribute information of the data when importing Orange Tab vector format data. The default is false, that does not ignore the data attributes.
  3316. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingOrangeTab.IsImportEmptyDataset"><summary>
  3317. Sets or gets whether to import the null dataset
  3318. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingOSM"><summary>
  3319. Parameter setting class for the OSM file import. from <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> 类。
  3320. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingOSM.#ctor"><summary>
  3321. The default constructor is to construct a new ImportSettingOSM object.
  3322. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingOSM.#ctor(SuperMap.Data.Conversion.ImportSettingOSM)"><summary>
  3323. Copy the constructor and construct a new object that is exactly the same as the given ImportSettingOSM object.
  3324. </summary><param name="importSettingOSM">The object used to initialize the new instance of the ImportSettingOSM.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingOSM.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3325. Construct a new instance of the ImportSettingOSM class based on the specified parameters.
  3326. </summary><param name="sourceFilePath">Specifies the path to the source file of the imported OSM format data.</param><param name="targetConnectionInfo">The target data source for the specified import connects to the information object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingOSM.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3327. Get the resolution of the image data. Unit: pixels / meter.
  3328. </summary><param name="sourceFilePath">The path to the specified source file for the imported OSM format data.</param><param name="targetDatasource">The specified imported target datasource object.</param></member><member name="T:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector"><summary>
  3329. Personal Geodatabase vector import parameter class. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3330. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector.#ctor"><summary>
  3331. The default constructor constructs a new ImportSettingPersonalGDBVector object.
  3332. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector.#ctor(SuperMap.Data.Conversion.ImportSettingPersonalGDBVector)"><summary>
  3333. The copy constructor constructs a new object identical to the given ImportSettingPersonalGDBVector object.
  3334. </summary><param name="ImportSetting">The object used to initialize a new instance of ImportSettingPersonalGDBVector.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3335. Constructs a new instance of the ImportSettingPersonalGDBVector class based on the specified parameters.
  3336. </summary><param name="sourceFilePath">Specifies the path to the source file of the imported Personal Geodatabase format data. </param><param name="targetConnectionInfo">The specified target data source link information object for the import.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3337. Constructs a new instance of the ImportSettingPersonalGDBVector class based on the specified parameters.
  3338. </summary><param name="sourceFilePath">Specifies the path to the source file of the imported PersonalGDBVector format data. </param><param name="targetDatasource">Specifies the target datasource for the import.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingPersonalGDBVector.IsImport3DAs2D"><summary>
  3339. Set whether to import 3D data into 2D data
  3340. </summary><value>The default is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingPNG"><summary>
  3341. The ImportSettingPNG class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3342. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingPNG.#ctor"><summary>
  3343. Initializes a new instance of this ImportSettingPNG class.
  3344. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingPNG.#ctor(SuperMap.Data.Conversion.ImportSettingPNG)"><summary>
  3345. Initializes a new instance of the importSettingPNG class which is identical with the specified ImportSettingPNG object.
  3346. </summary><param name="importSettingPNG">the object used to initialize a new instance of the ImportSettingPNG class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingPNG.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3347. Initializes a new instance of the ImportSettingPNG class with the specified parameters.
  3348. </summary><param name="sourceFilePath">the source file path of the specified PNG data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingPNG.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3349. Initializes a new instance of the ImportSettingPNG class with the specified parameters.
  3350. </summary><param name="sourceFilePath">the source file path of the specified PNG data to be imported.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.ImportingAsGrid"><summary>
  3351. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  3352. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.IsPyramidBuilt"><summary>
  3353. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3354. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.WorldFilePath"><summary>
  3355. Gets or sets the path of the coordinates of the images.
  3356. </summary><value>The default value is String.Empty.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.MultiBandImportMode"><summary>
  3357. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  3358. <para>This interface is available only when there are FME license.</para></summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.Composite">Composite</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.IgnoreMode"><summary>
  3359. Gets or sets the IgnoreMode of Portal Network Graphic(PNG) file.
  3360. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingPNG.IgnoreValues"><summary>
  3361. Gets or sets the color values to ignore.
  3362. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingRAW"><summary>
  3363. The <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSettingRAW</see> class, which provides the information of imported setting of the RAW data. This class inherits from ImportSetting class.
  3364. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingRAW.#ctor"><summary>
  3365. Initializes a new instance of this ImportSettingRAW class.
  3366. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingRAW.#ctor(SuperMap.Data.Conversion.ImportSettingRAW)"><summary>
  3367. Initializes a new instance of the ImportSettingRAW class which is identical with the specified ImportSettingRAW object.
  3368. </summary><param name="importSettingRAW">the object used to initialize a new instance of the ImportSettingRAW class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingRAW.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3369. Initializes a new instance of the ImportSettingRAW class with the specified parameters.
  3370. </summary><param name="sourceFilePath">the source file path of the specified RAW data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingRAW.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3371. Initializes a new instance of the ImportSettingRAW class with the specified parameters.
  3372. </summary><param name="sourceFilePath">the source file path of the specified RAW data to be imported.</param><param name="targetDatasource">The specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingRAW.IsPyramidBuilt"><summary>
  3373. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3374. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingRAW.IgnoreMode"><summary>
  3375. Gets or sets the IgnoreMode of RAW file.
  3376. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingRAW.IgnoreValues"><summary>
  3377. Gets or sets the color values to ignore.
  3378. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettings"><summary>
  3379. The ImportSettings class which is the collection of the ImportSetting object. The <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> object is the item of the ImportSettings object.
  3380. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettings.Add(SuperMap.Data.Conversion.ImportSetting)"><summary>Add a specific element to ImportSettings.</summary><param name="importSetting">the ImportSetting object to be added.</param><returns>The index of the added ImportSetting object.</returns></member><member name="M:SuperMap.Data.Conversion.ImportSettings.Insert(System.Int32,SuperMap.Data.Conversion.ImportSetting)"><summary>Add a specific element to ImportSettings at the given index.</summary><param name="index">the index specified.</param><param name="importSetting">The ImportSetting object to be added.</param><returns>True, if successful; Otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportSettings.Remove(System.Int32)"><summary>The item removed from ExportSettings at a specific index.</summary><param name="index">The index of the TransferWeightFieldInfo to be removed.</param><returns>True, if successful; Otherwise false.</returns></member><member name="M:SuperMap.Data.Conversion.ImportSettings.Clear"><summary>Remove all the items from ImportSettings.</summary></member><member name="M:SuperMap.Data.Conversion.ImportSettings.GetEnumerator"><summary>
  3381. Returns an enumerator that can iterate through the collection.
  3382. </summary><returns>Returns an enumerator that iterates through a collection.</returns></member><member name="P:SuperMap.Data.Conversion.ImportSettings.Count"><summary>
  3383. Gets the count of the elements in the given ImportSettings.
  3384. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettings.Item(System.Int32)"><summary>
  3385. Gets the ImportSetting object with specified index in the ImportSettings object.
  3386. </summary><param name="index">The specified index, which begins with 0.</param></member><member name="T:SuperMap.Data.Conversion.ImportSettingSCV"><summary>
  3387. The ImportSettingSCV class.
  3388. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSCV.#ctor"><summary>
  3389. Constructs a new ImportSettingSCV object.
  3390. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSCV.#ctor(SuperMap.Data.Conversion.ImportSettingSCV)"><summary>
  3391. Constructs an ImportSettingSCV class object which is identical with the given object.
  3392. </summary><param name="importSettingSCV">The given import setting class object of model dataset.</param></member><member name="T:SuperMap.Data.Conversion.ImportSettingSDEVector"><summary>
  3393. The ImportSettingSDEVector class.This class inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3394. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor"><summary>
  3395. Initializes a new instance of this ImportSettingSDEVector class.
  3396. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(SuperMap.Data.Conversion.ImportSettingSDEVector)"><summary>
  3397. The copy constructor, initializes a new instance of the ImportSettingSDEVector class which is identical with the specified ImportSettingSDEVector object.
  3398. </summary><param name="importSettingSDEVector">the object used to initialize a new instance of the importSettingSDEVector class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(System.String,System.String,System.String,System.String,System.String)"><summary>
  3399. Initializes a new instance of the ImportSettingSDEVector class according to the specified parameters.
  3400. </summary><param name="server">the server name or IP.</param><param name="database">the database name.</param><param name="user">the user name of the data source.</param><param name="password">the password of the data source.</param><param name="portName">the port number of the data source, it is usually “port:5151”.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(System.String,System.String,System.String,System.String,System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3401. Initializes a new instance of the ImportSettingSDEVector class according to the specified parameters.
  3402. </summary><param name="server">the server name or IP.</param><param name="database">the database name.</param><param name="user">the user name of the data source.</param><param name="password">the password of the data source.</param><param name="portName">the port number of the data source, it is usually “port:5151”.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(System.String,System.String,System.String,System.String,System.String,SuperMap.Data.Datasource)"><summary>
  3403. Initializes a new instance of the ImportSettingSDEVector class according to the specified parameters.
  3404. </summary><param name="server">the server name or IP.</param><param name="database">the database name.</param><param name="user">the user name of the data source.</param><param name="password">the password of the data source.</param><param name="portName">the port number of the data source, it is usually “port:5151”.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3405. Initializes a new instance of the ImportSettingSDEVector class according to the specified parameters.
  3406. </summary><param name="sourceFilePath">the specified source file path of the imported data with ArcSDE vector format.</param><param name="targetDatasource">the specified imported target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSDEVector.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3407. Initializes a new instance of the ImportSettingSDEVector class according to the specified parameters.
  3408. </summary><param name="sourceFilePath">the specified source file path of the imported data with ArcSDE vector format.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.Server"><summary>
  3409. Gets or sets the server name or IP.
  3410. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.Database"><summary>
  3411. Gets or sets SDE database name.
  3412. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.User"><summary>
  3413. Gets or sets the user name of the datasource.
  3414. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.Password"><summary>
  3415. Gets or sets the password of the datasource.
  3416. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.PortName"><summary>
  3417. Gets or sets the port number of the data source, it is usually “port:5151”.
  3418. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.SpatialIndex"><summary>
  3419. Gets or sets the information of the spatial index.
  3420. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSDEVector.IsAttributeIgnored"><summary>
  3421. Gets or sets whether to ignore attribute information when import SDEVector data. The default is false.
  3422. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingSHP"><summary>
  3423. The ImportSettingSHP class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3424. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSHP.#ctor"><summary>
  3425. Initializes a new instance of this ImportSettingSHP class.
  3426. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSHP.#ctor(SuperMap.Data.Conversion.ImportSettingSHP)"><summary>
  3427. Initializes a new instance of the ImportSettingSHP class which is identical with the specified ImportSettingSHP object.
  3428. </summary><param name="importSettingSHP">the object used to initialize a new instance of the ImportSettingSHP class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSHP.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3429. Initializes a new instance of the ImportSettingSHP class with the specified parameters.
  3430. </summary><param name="sourceFilePath">The source file path of the specified SHP data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSHP.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3431. Initializes a new instance of the ImportSettingSHP class with the specified parameters.
  3432. </summary><param name="sourceFilePath">The source file path of the specified SHP data to be imported.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingSHP.SpatialIndex"><summary>
  3433. Gets or sets the information of the spatial index.
  3434. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSHP.IsAttributeIgnored"><summary>
  3435. Gets or sets whether to ignore attributes, including vector data attribute information and raster data attribute table. The default is false.
  3436. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSHP.IsImportAs3D"><summary>
  3437. Gets or sets whether to import to a 3D dataset.
  3438. </summary><value>the default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingSHP.IsImportEmptyDataset"><summary>
  3439. Sets or gets whether to import the null dataset
  3440. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingSIT"><summary>
  3441. The ImportDataInfoSIT class, which provides the information of the imported SIT data. This class is inhertied from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3442. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSIT.#ctor"><summary>
  3443. Initializes a new instance of this ImportSettingSIT class.
  3444. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingSIT.#ctor(SuperMap.Data.Conversion.ImportSettingSIT)"><summary>
  3445. Initializes a new instance of the ImportSettingSIT class which is identical with the specified ImportSettingSIT object.
  3446. </summary><param name="importSettingSIT">the object used to initialize a new instance of the ImportSettingSIT class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSIT.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3447. Initializes a new instance of the ImportSettingSIT class with the specified parameters.
  3448. </summary><param name="sourceFilePath">The source file path of the specified SIT data to be imported.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingSIT.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3449. Initializes a new instance of the ImportSettingSIT class with the specified parameters.
  3450. </summary><param name="sourceFilePath">The source file path of the specified SIT data to be imported.</param><param name="targetDatasource">The specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingSIT.Password"><summary>
  3451. Gets or sets the password of the SIT data.
  3452. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSIT.IgnoreMode"><summary>
  3453. Gets or sets the IgnoreMode of SIT file.
  3454. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSIT.IgnoreValues"><summary>
  3455. Gets or sets the color values to ignore.
  3456. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingSIT.ImportingAsGrid"><summary>
  3457. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  3458. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingSIT.MultiBandImportMode"><summary>
  3459. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  3460. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member>
  3461.         <member name="T:SuperMap.Data.Conversion.ImportSettingSKP">
  3462.             <summary>
  3463.             The SketchUp data import settings class supports importing data from the .skp format into a data source.
  3464.             </summary>
  3465.         </member>
  3466.         <member name="M:SuperMap.Data.Conversion.ImportSettingSKP.#ctor">
  3467.             <summary>
  3468.             The default constructor constructs a new SketchUp data import settings class object.
  3469.             </summary>
  3470.         </member>
  3471.         <member name="M:SuperMap.Data.Conversion.ImportSettingSKP.#ctor(SuperMap.Data.Conversion.ImportSettingSKP)">
  3472.             <summary>
  3473.             The copy constructor constructs a new object identical to the given ImportSettingSKP object.
  3474.             </summary>
  3475.             <param name="importSetting"></param>
  3476.         </member>
  3477.         <member name="M:SuperMap.Data.Conversion.ImportSettingSKP.#ctor(System.String,SuperMap.Data.Datasource)">
  3478.             <summary>
  3479.             Constructs a new SketchUp data import settings class object based on the specified parameters.
  3480.             </summary>
  3481.             <param name="sourceFilePath"> source data, the file format is .skp. </param>
  3482.             <param name="targetDatasource">Target data source. </param>
  3483.         </member>
  3484.         <member name="M:SuperMap.Data.Conversion.ImportSettingSKP.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)">
  3485.             <summary>
  3486.             Constructs a new SketchUp data import settings class object based on the specified parameters.
  3487.             </summary>
  3488.             <param name="sourceFilePath"> source data, the file format is .skp. </param>
  3489.             <param name="targetConnectionInfo">Specify the imported data source connection information</param>
  3490.         </member>
  3491.         <member name="T:SuperMap.Data.Conversion.ImportSettingTAB">
  3492.              <summary>
  3493. The ImportSettingTAB class, which provides the information of imported setting of the TAB data. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.Only two kinds of TAB files are supported which the attribute are save as .dat or .dbf format.
  3494. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTAB.#ctor"><summary>
  3495. Initializes a new instance of this ImportSettingTAB class.
  3496. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTAB.#ctor(SuperMap.Data.Conversion.ImportSettingTAB)"><summary>
  3497. Initializes a new instance of the ImportSettingTAB class which is identical with the specified ImportSettingTAB object.
  3498. </summary><param name="importSettingTAB">the object used to initialize a new instance of the ImportSettingTAB class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTAB.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3499. Initializes a new instance of the ImportSettingTAB class with the specified parameters.
  3500. </summary><param name="sourceFilePath">the specified source file path of the imported data with TAB format.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTAB.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3501. Initializes a new instance of the ImportSettingTAB class with the specified parameters.
  3502. </summary><param name="sourceFilePath">The specified source file path of the imported data with TAB format.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTAB.ImportingAsCAD"><summary>
  3503. Gets or sets whether to import the *.tab file to CAD dataset.The default value is true, represents importing it to <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset, otherwise to the vector dataset.
  3504. </summary><value>The default value is true.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTAB.SpatialIndex"><summary>
  3505. Gets or sets the spatial index information of the imported data.
  3506. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTAB.IsAttributeIgnored"><summary>
  3507. Gets or sets whether to ignore attributes when import TAB data, including vector attribute information and raster attribute table. The default is false.
  3508. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTAB.StyleMappingTableFile"><summary>
  3509. Gets or sets the style lookup table file path.
  3510. </summary><value>the default store path is: [Installation directory]/Bin/resource/stmi.stt.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTAB.IsImportEmptyDataset"><summary>
  3511. Sets or gets whether to import the null dataset
  3512. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector"><summary>
  3513. The setting class for the <see cref="F:SuperMap.Data.Conversion.FileType.TEMSBuildingVector">TEMSBuildingVector</see> class. It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3514. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.#ctor"><summary>
  3515. Initializes a new instance of this ImportSettingTEMSBuildingVector class.
  3516. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.#ctor(SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector)"><summary>
  3517. Initializes a new instance of the ImportSettingTEMSBuildingVector class which is identical with the specified ImportSettingTEMSBuildingVector object.
  3518. </summary><param name="importSettingTEMSBuildingVector">The object that is used to initialize a new instance of the ImportSettingTEMSBuildingVector. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3519. Initializes a new instance of the class according to the specified parameters.
  3520. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSBuildingVector format.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3521. Initializes a new instance of the class according to the specified parameters.
  3522. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSBuildingVector format.</param><param name="targetDatasource">The specified target datasource object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.SpatialIndex"><summary>
  3523. Gets or sets the information of the spatial index.
  3524. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.IsImportEmptyDataset"><summary>
  3525. Sets or gets whether to import the null dataset
  3526. </summary><value>The default value is false. Don't import the null dataset.</value></member>
  3527.          <member name="P:SuperMap.Data.Conversion.ImportSettingTEMSBuildingVector.IsCharSeparator">
  3528.              <summary>
  3529.              Set or get a split field by character
  3530.              </summary>
  3531.              <value> The default value is false. Split by space, not divided by characters. </value>
  3532.          </member>
  3533.          <member name="T:SuperMap.Data.Conversion.ImportSettingTEMSClutter">
  3534.              <summary>
  3535. The ImportSettingTEMSClutter class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3536. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSClutter.#ctor"><summary>
  3537. Initializes a new instance of this ImportSettingTEMSClutter class.
  3538. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSClutter.#ctor(SuperMap.Data.Conversion.ImportSettingTEMSClutter)"><summary>
  3539. Initializes a new instance of the ImportSettingTEMSClutter class which is identical with the specified ImportSettingTEMSClutter object.
  3540. </summary><param name="importSettingTEMSClutter">The object that is used to initialize a new instance of the ImportSettingTEMSClutter class. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSClutter.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3541. Initializes a new instance of the class according to the specified parameters.
  3542. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSClutter format. </param><param name="targetConnectionInfo">The specified imported DatasourceConnectionInfo object. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSClutter.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3543. Initializes a new instance of the class according to the specified parameters.
  3544. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSClutter format. </param><param name="targetDatasource">The specified target datasource to be imported. </param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSClutter.IsPyramidBuilt"><summary>
  3545. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3546. </summary><value>The default value is false.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels"><summary>
  3547. the <see cref="F:SuperMap.Data.Conversion.FileType.TEMSTEXT">ImportSettingTEMSTEXT</see> class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class
  3548. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.#ctor"><summary>
  3549. Initializes a new instance of this ImportSettingTEMSTextLabels class.
  3550. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.#ctor(SuperMap.Data.Conversion.ImportSettingTEMSTextLabels)"><summary>
  3551. Initializes a new instance of the ImportSettingTEMSTextLabels class which is identical with the specified ImportSettingJP2 object.
  3552. </summary><param name="importSettingTEMSTextLabels">The object that is used to initialize a new instance of the ImportSettingTEMSTextLabels. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3553. Initializes a new instance of the ImportSettingTEMSTextLabels class with the specified parameters.
  3554. </summary><param name="sourceFilePath">The specified source file path of the imported data withTEMSTextLabels format. </param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object to be imported. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3555. Initializes a new instance of the ImportSettingTEMSTextLabels class with the specified parameters.
  3556. </summary><param name="sourceFilePath">The specified source file path of the imported data withTEMSTextLabels format.</param><param name="targetDatasource">The specified target datasource object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.SpatialIndex"><summary>
  3557. Gets or sets the information of the spatial index.
  3558. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSTextLabels.IsImportEmptyDataset"><summary>
  3559. Sets or gets whether to import the null dataset
  3560. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingTEMSVector"><summary>
  3561. the <see cref="F:SuperMap.Data.Conversion.FileType.TEMSVector">ImportSettingTEMSVector</see> class. It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class
  3562. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSVector.#ctor"><summary>
  3563. Initializes a new instance of this ImportSettingTEMSVector class.
  3564. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSVector.#ctor(SuperMap.Data.Conversion.ImportSettingTEMSVector)"><summary>
  3565. Initializes a new instance of the ImportSettingTEMSVector class which is identical with the specified ImportSettingTEMSVector object.
  3566. </summary><param name="importSettingTEMSVector">The object that is used to initialize a new instance of the ImportSettingTEMSVector class. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSVector.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3567. Initializes a new instance of the class according to the specified parameters.
  3568. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSVector format. </param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object to be imported. </param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTEMSVector.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3569. Initializes a new instance of the class according to the specified parameters.
  3570. </summary><param name="sourceFilePath">The specified source file path of the imported data with TEMSVector format.</param><param name="targetDatasource">The specified target datasource object.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSVector.SpatialIndex"><summary>
  3571. Gets or sets the information of the spatial index.
  3572. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTEMSVector.IsImportEmptyDataset"><summary>
  3573. Sets or gets whether to import the null dataset
  3574. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingTIF"><summary>
  3575. The ImportSettingTIF class.It inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3576. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTIF.#ctor"><summary>
  3577. Initializes a new instance of this ImportSettingTIF class.
  3578. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingTIF.#ctor(SuperMap.Data.Conversion.ImportSettingTIF)"><summary>
  3579. Initializes a new instance of the ImportSettingTIF class which is identical with the specified ImportSettingTIF object.
  3580. </summary><param name="importSettingTIF">The object used to initialize a new instance of the ImportSettingTIF class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTIF.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3581. Initializes a new instance of the ImportSettingTIF class with the specified parameters.
  3582. </summary><param name="sourceFilePath">source file path.</param><param name="targetConnectionInfo">The target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingTIF.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3583. Initializes a new instance of the ImportSettingTIF class with the specified parameters.
  3584. </summary><param name="sourceFilePath">The source file path of the specified TIF data to be imported.</param><param name="targetDatasource">The specified imported target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.ImportingAsGrid"><summary>
  3585. Gets or sets whether to import to <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset.The default value is false, represents importing it as the original dataset type.
  3586. </summary><value>the default value is false, that is import dataset to the original dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.IsPyramidBuilt"><summary>
  3587. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3588. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.WorldFilePath"><summary>
  3589. Gets or sets the path of the coordinates file (WorldFile) of the images.
  3590. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.MultiBandImportMode"><summary>
  3591. Gets or sets MultiBandImportMode, import as several single band dataset, a single multiband dataset or a single band dataset.
  3592. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.IgnoreMode"><summary>
  3593. Gets or sets the IgnoreMode of Tiff/BigTIFF/GeoTIFF file.
  3594. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingTIF.IgnoreValues"><summary>
  3595. Gets or sets the color values to ignore.
  3596. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingUSGSDEM"><summary>
  3597. The ImportSettingUSGSDEM class, which provides the parameter setting of the BSQ grid data.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3598. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingUSGSDEM.#ctor"><summary>
  3599. Initializes a new instance of this ImportSettingUSGSDEM class.
  3600. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingUSGSDEM.#ctor(SuperMap.Data.Conversion.ImportSettingUSGSDEM)"><summary>
  3601. Initializes a new instance of the ImportSettingUSGSDEM class which is identical with the specified ImportSettingUSGSDEM object.
  3602. </summary><param name="importSettingUSGSDEM">the object used to initialize a new instance of the ImportSettingUSGSDEM class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingUSGSDEM.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3603. Initializes a new ImportSettingUSGSDEM instance according to the specified parameters.
  3604. </summary><param name="sourceFilePath">The path of the USGS DEM data to import.</param><param name="targetConnectionInfo">The specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingUSGSDEM.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3605. Initializes a new ImportSettingUSGSDEM instance according to the specified parameters.
  3606. </summary><param name="sourceFilePath">The path of the USGS DEM data to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingUSGSDEM.IsPyramidBuilt"><summary>
  3607. Gets or sets whether to automatically build an image pyramid. The default is false, indicating that no image pyramid is built for the image data.
  3608. </summary><value>The default value is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingUSGSDEM.IgnoreMode"><summary>
  3609. Gets or sets the mode of ignore color value for USGS DEM data.
  3610. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingUSGSDEM.IgnoreValues"><summary>
  3611. Gets or sets the color values to ignore.
  3612. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingVCT"><summary>
  3613. The ImportSettingVCT class.It inherits from <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3614. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingVCT.#ctor"><summary>
  3615. Initializes a new instance of this ImportSettingVCT class.
  3616. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingVCT.#ctor(SuperMap.Data.Conversion.ImportSettingVCT)"><summary>
  3617. Initializes a new instance of the ImportSettingVCT class which is identical with the specified ImportSettingVCT object.
  3618. </summary><param name="importSettingVCT">the object used to initialize a new instance of the ImportSettingVCT class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingVCT.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3619. Initializes a new instance of the ImportSettingVCT class with the specified parameters.
  3620. </summary><param name="sourceFilePath">the source file path of the specified VCT data to be imported.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingVCT.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3621. Initializes a new instance of the ImportSettingVCT class with the specified parameters.
  3622. </summary><param name="sourceFilePath">the source file path of the specified VCT data to be imported.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingVCT.IsImportEmptyDataset"><summary>
  3623. Sets or gets whether to import the null dataset
  3624. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSettingVRT"><summary>
  3625. Parameter setting class for GDAL Virtual (VRT) file import. Inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting"> ImportSetting</see> class.
  3626. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingVRT.#ctor"><summary>
  3627. The default constructor constructs a new ImportSettingVRT object.
  3628. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingVRT.#ctor(SuperMap.Data.Conversion.ImportSettingVRT)"><summary>
  3629. The copy constructor constructs a new object identical to the given ImportSettingVRT object.
  3630. </summary><param name="importSettingIMG">The object used to initialize a new instance of ImportSettingVRT.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingVRT.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3631. Constructs a new instance of the ImportSettingVRT class based on the specified parameters.
  3632. </summary><param name="sourceFilePath">The specified source file path to import GDAL Virtual formatted data.</param><param name="targetConnectionInfo">The specified connection information object imported into the target datasource.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingVRT.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3633. Constructs a new instance of the ImportSettingVRT class based on the specified parameters.
  3634. </summary><param name="sourceFilePath">The specified source file path to import GDAL Virtual formatted data.</param><param name="targetDatasource">The specified import is to the target datasource.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingVRT.ImportingAsGrid"><summary>
  3635. Gets or sets whether to import as a <see cref="F:SuperMap.Data.DatasetType.Grid">Grid</see> dataset. The default is false, which imports the dataset by source dataset type.
  3636. </summary><value>The default is false, which imports the dataset by source dataset type.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingVRT.IsPyramidBuilt"><summary>
  3637. Gets or sets whether the image pyramid is automatically created. The default is false, which means that image pyramids are not created for image data by default.
  3638. </summary><value>The default is false.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingVRT.MultiBandImportMode"><summary>
  3639. Gets or sets the multiband import mode, which can be imported as multiple single-band datasets, a single multiband dataset, or a single single-band dataset.
  3640. </summary><value>The default value is <see cref="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand">SingleBand</see>.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingVRT.IgnoreMode"><summary>
  3641. Gets or sets the mode of ignoring color values for GDAL Virtual (VRT) files.
  3642. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingVRT.IgnoreValues"><summary>
  3643. Gets or sets the color value to ignore.
  3644. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingWOR"><summary>
  3645. The ImportSettingWOR class.It inherited from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3646. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingWOR.#ctor"><summary>
  3647. Initializes a new instance of this ImportSettingWOR class.
  3648. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingWOR.#ctor(SuperMap.Data.Conversion.ImportSettingWOR)"><summary>
  3649. Initializes a new instance of the ImportSettingWOR class which is identical with the specified ImportSettingWOR object.
  3650. </summary><param name="importSettingWOR">The object used to initialize a new instance of the ImportSettingWOR class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingWOR.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo,SuperMap.Data.WorkspaceConnectionInfo)"><summary>
  3651. Initializes a new instance of the ImportSettingWOR class with the specified parameters.
  3652. </summary><param name="sourceFilePath">the specified source file path of the WOR file of MapInfo.</param><param name="targetConnectionInfo">The specified target connection information.</param><param name="targetWorkspaceConnectionInfo">The specified workspace connection information after imported.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingWOR.#ctor(System.String,SuperMap.Data.Datasource,SuperMap.Data.Workspace)"><summary>
  3653. Initializes a new instance of the ImportSettingWOR class with the specified parameters.
  3654. </summary><param name="sourceFilePath">The source file path of the specified WOR data to be imported.</param><param name="targetDatasource">The specified imported target datasource.</param><param name="targetWorkspace">The specified imported target workspace.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingWOR.TargetWorkspaceConnectionInfo"><summary>
  3655. Gets or sets the WorkspaceConnectionInfo after import. The locations of the workspace and datasource is not restricted, and have the same structure with SuperMap workspace.
  3656. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingWOR.TargetWorkspace"><summary>
  3657. Sets or gets the workspace object after import.
  3658. </summary><value>The default value is Null.</value></member><member name="P:SuperMap.Data.Conversion.ImportSettingWOR.IsImportEmptyDataset"><summary>
  3659. Sets or gets whether to import the null dataset
  3660. </summary><value>The default value is false. Don't import the null dataset.</value></member><member name="T:SuperMap.Data.Conversion.ImportSteppedEventArgs"><summary>
  3661. Provide data for ImportSteppedEventArgs.
  3662. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSteppedEventArgs.#ctor(System.String,System.String,System.Int32,System.Int32,SuperMap.Data.Conversion.ImportSetting,System.Int32,System.Boolean)"><summary>
  3663. Creates a new ImportSteppedEventArgs object according to the specified arguments.
  3664. </summary><param name="title"></param><param name="message"></param><param name="percent">The total percent of the current operation.</param><param name="subPercent">The percent of the current item.</param><param name="currentTask">The current item information.</param><param name="count">Gets the count of the items of the tasks.</param><param name="cancel">Whether to cancel all the import tasks.</param></member><member name="P:SuperMap.Data.Conversion.ImportSteppedEventArgs.TotalPercent"><summary>
  3665. Returns the completion percent of the current operation.
  3666. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSteppedEventArgs.SubPercent"><summary>
  3667. Returns the percentage of the current finsihed items.
  3668. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSteppedEventArgs.CurrentTask"><summary>
  3669. Returns the information of the current item and pass to Setting, users can select the properties needed.
  3670. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSteppedEventArgs.Count"><summary>
  3671. Returns the count of the items of the tasks.
  3672. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSteppedEventArgs.Cancel"><summary>
  3673. Sets or returns whether to cancel all the import tasks, the default is false.
  3674. </summary></member><member name="T:SuperMap.Data.Conversion.ImportSteppedEventHandler"><summary>
  3675. Represents the method class that handles the imported stepped event. sender is <see cref="T:SuperMap.Data.Conversion.DataImport">DataImport</see>, and <see cref="T:SuperMap.Data.Conversion.ImportSteppedEventArgs">ImportSteppedEventArgs</see> is inherited from EventArgs with ImportSteppedEventHandler as its delegate.
  3676. </summary><param name="sender">The source event.</param><param name="e">The ImportSteppedEventArgs class.</param></member><member name="T:SuperMap.Data.Conversion.MultiBandImportMode"><summary>
  3677. This enumeration defines the multiple band import mode constant.
  3678. </summary></member><member name="F:SuperMap.Data.Conversion.MultiBandImportMode.SingleBand"><summary>
  3679. The SingleBand mode is that import the data from multiband to several single band dataset.
  3680. </summary></member><member name="F:SuperMap.Data.Conversion.MultiBandImportMode.MultiBand"><summary>
  3681. The SingleBand mode is that import the data from multiband to one multiband dataset.
  3682. </summary></member><member name="F:SuperMap.Data.Conversion.MultiBandImportMode.Composite"><summary>
  3683. There are two kinds of importing multiband data as single band dataset:
  3684. <list type="number"><item><description>Importing a three band 8 bit data as a RGB single band 24 bit dataset;</description></item><item><description>Importing a four band 8 bit data as a RGBA single band 32 bit dataset;</description></item></list></summary></member><member name="T:SuperMap.Data.Conversion.ImportSettingModel3DS"><summary>
  3685. The ImportSettingModel3DS inherits from the <see cref="T:SuperMap.Data.Conversion.ImportSetting">ImportSetting</see> class.
  3686. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModel3DS.#ctor"><summary>
  3687. Initializes a new instance of this ImportSettingModel3DS class.
  3688. </summary></member><member name="M:SuperMap.Data.Conversion.ImportSettingModel3DS.#ctor(SuperMap.Data.Conversion.ImportSettingModel3DS)"><summary>
  3689. Initializes a new instance of the ImportSettingModel3DS class which is identical with the specified ImportSettingModel3DS object.
  3690. </summary><param name="importSettingModel3DS">The object used to initialize a new instance of the ImportSettingModel3DS class.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModel3DS.#ctor(System.String,SuperMap.Data.DatasourceConnectionInfo)"><summary>
  3691. Initializes a new ImportSettingModel3DS instance according to the specified parameters.
  3692. </summary><param name="sourceFilePath">The path of the 3DS 3D model file to import.</param><param name="targetConnectionInfo">the specified target DatasourceConnectionInfo object.</param></member><member name="M:SuperMap.Data.Conversion.ImportSettingModel3DS.#ctor(System.String,SuperMap.Data.Datasource)"><summary>
  3693. Initializes a new ImportSettingModelOSG instance according to the specified parameters.
  3694. </summary><param name="sourceFilePath">The path of the 3DS 3D model file to import.</param><param name="targetDatasource">the specified target datasource object to be imported.</param></member><member name="P:SuperMap.Data.Conversion.ImportSettingModel3DS.Position"><summary>
  3695. Gets or sets the position of the model to import.
  3696. </summary></member><member name="P:SuperMap.Data.Conversion.ImportSettingModel3DS.ImportingAsCAD"><summary>
  3697. Gets or sets the schema that imports the Model3DS format data (currently the Model3DS model data only supports importing the model dataset,and does not support importing as a CAD dataset, and fails if the import is true).
  3698. </summary><value>The default value is false, which is imported as a model dataset, otherwise it is a <see cref="F:SuperMap.Data.DatasetType.CAD">CAD</see> dataset.</value></member><member name="T:SuperMap.Data.Conversion.VCTVersion"><summary>
  3699. This enumeration defines the version of the Land Use Data Exchange Format (VCT).
  3700. </summary></member><member name="F:SuperMap.Data.Conversion.VCTVersion.CNSDTF_VCT"><summary>
  3701. National Natural Standards 1.0
  3702. </summary></member><member name="F:SuperMap.Data.Conversion.VCTVersion.LANDUSE_VCT"><summary>
  3703. Territory second version
  3704. </summary></member><!-- 对于成员“F:SuperMap.Data.Conversion.VCTVersion.LANDUSE_VCT30”忽略有格式错误的 XML 注释 --></members>
  3705. </doc>