SuperMap.Chart.xml 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SuperMap.Chart</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SuperMap.Chart.AgencyS57">
  8. <summary>
  9. The AgencyS57 class. It provides the related information of the agency which products the S-57 format data, including the acronym, code and name.
  10. </summary>
  11. </member>
  12. <member name="P:SuperMap.Chart.AgencyS57.Token">
  13. <summary>
  14. Gets the acronym of the agency.
  15. </summary>
  16. <value>The default value is String.Empty.</value>
  17. </member>
  18. <member name="P:SuperMap.Chart.AgencyS57.Code">
  19. <summary>
  20. Gets the code of the agency.
  21. </summary>
  22. <value>The default value is -1.</value>
  23. </member>
  24. <member name="P:SuperMap.Chart.AgencyS57.AgencyName">
  25. <summary>
  26. Gets the name of the agency.
  27. </summary>
  28. <value>The default value is String.Empty.</value>
  29. </member>
  30. <member name="T:SuperMap.Chart.AttributeExpectedInputsS57">
  31. <summary>
  32. The AttributeExpectedInputsS57 class. It's used to represent the related information of the expected input of the AttributeS57 object, such as the ID, meaning, definition, and references.
  33. </summary>
  34. </member>
  35. <member name="P:SuperMap.Chart.AttributeExpectedInputsS57.ID">
  36. <summary>
  37. Gets the ID of the attribute that you expect to input.
  38. </summary>
  39. </member>
  40. <member name="P:SuperMap.Chart.AttributeExpectedInputsS57.Meaning">
  41. <summary>
  42. Gets the meaning of the attribute that you expect to input.
  43. </summary>
  44. </member>
  45. <member name="P:SuperMap.Chart.AttributeExpectedInputsS57.Definition">
  46. <summary>
  47. Gets the definitions of the attribute that you expect to input.
  48. </summary>
  49. </member>
  50. <member name="P:SuperMap.Chart.AttributeExpectedInputsS57.References">
  51. <summary>
  52. Gets the references of the attribute that you expect to input.
  53. </summary>
  54. </member>
  55. <member name="T:SuperMap.Chart.AttributeS57">
  56. <summary>
  57. The FeatureInfoS57 class. It's used to describe the basic information of the feature attributes, which includes the acronym, the name, and so on.
  58. </summary>
  59. </member>
  60. <member name="P:SuperMap.Chart.AttributeS57.Acronym">
  61. <summary>
  62. Gets the acronym of the attribute.
  63. </summary>
  64. <value>The default value is String.Empty.</value>
  65. </member>
  66. <member name="P:SuperMap.Chart.AttributeS57.Name">
  67. <summary>
  68. Gets the attribute field name.
  69. </summary>
  70. <value>The default value is String .Empty.</value>
  71. </member>
  72. <member name="P:SuperMap.Chart.AttributeS57.LocalName">
  73. <summary>
  74. Gets the localized name.
  75. </summary>
  76. <value>The default value is String.Empty.</value>
  77. </member>
  78. <member name="P:SuperMap.Chart.AttributeS57.Definition">
  79. <summary>
  80. Gets the definition of the attribute.
  81. </summary>
  82. <value>The default value is String.Empty.</value>
  83. </member>
  84. <member name="P:SuperMap.Chart.AttributeS57.References">
  85. <summary>
  86. Gets the reference information of the attribute.
  87. </summary>
  88. <value>The default value is String.Empty.</value>
  89. </member>
  90. <member name="P:SuperMap.Chart.AttributeS57.Remarks">
  91. <summary>
  92. Gets the remark information of the attribute.
  93. </summary>
  94. <value>The default value is String.Empty.</value>
  95. </member>
  96. <member name="P:SuperMap.Chart.AttributeS57.AttributeType">
  97. <summary>
  98. Gets the type of the attribute.
  99. </summary>
  100. </member>
  101. <member name="P:SuperMap.Chart.AttributeS57.Code">
  102. <summary>
  103. Gets the code of the attribute.
  104. </summary>
  105. <value>The default value is 0.</value>
  106. </member>
  107. <member name="P:SuperMap.Chart.AttributeS57.SubSet">
  108. <summary>
  109. Gets the collection which the attribute belongs to.
  110. </summary>
  111. </member>
  112. <member name="P:SuperMap.Chart.AttributeS57.AttributeExpectedInputs">
  113. <summary>
  114. Gets the expected input collection of the S-57 feature attributes.
  115. </summary>
  116. <value>The default value is null.</value>
  117. </member>
  118. <member name="P:SuperMap.Chart.AttributeS57.Format">
  119. <summary>
  120. Gets the display format of the attribute.
  121. </summary>
  122. <value>The default value is String.Empty.</value>
  123. </member>
  124. <member name="P:SuperMap.Chart.AttributeS57.Indication">
  125. <summary>
  126. Gets the indication information of the attribute.
  127. </summary>
  128. </member>
  129. <member name="P:SuperMap.Chart.AttributeS57.Condition">
  130. <summary>
  131. Gets the restrictions when using this attribute.
  132. </summary>
  133. </member>
  134. <member name="T:SuperMap.Chart.AttributeSpecs">
  135. <summary>
  136. The AttributeSpecs class. It’s used to provide the attribute fields of the features in the chart. For example, the ENC 3.1 version. It is obsolete. Replace it with <see cref="T:SuperMap.Chart.AttributeSpec">AttributeSpec</see>.
  137. </summary>
  138. </member>
  139. <member name="P:SuperMap.Chart.AttributeSpecs.Code">
  140. <summary>
  141. Gets the attribute field code.
  142. </summary>
  143. <value>The default value is 0.</value>
  144. </member>
  145. <member name="P:SuperMap.Chart.AttributeSpecs.Required">
  146. <summary>
  147. Gets whether this attribute is required for the feature.
  148. </summary>
  149. </member>
  150. <member name="T:SuperMap.Chart.AttributeTypeChart">
  151. <summary>
  152. This class defines the chart attribute type contant.
  153. </summary>
  154. </member>
  155. <member name="F:SuperMap.Chart.AttributeTypeChart.None">
  156. <summary>
  157. Unknown type.
  158. </summary>
  159. </member>
  160. <member name="F:SuperMap.Chart.AttributeTypeChart.Enumerated">
  161. <summary>
  162. Enumerated ('E'). It means the expected value is selected from the <see cref="T:SuperMap.Chart.AttributeExpectedInputsS57">AttributeExpectedInputsS57</see> collection, and the value must be correct.
  163. </summary>
  164. </member>
  165. <member name="F:SuperMap.Chart.AttributeTypeChart.List">
  166. <summary>
  167. List ('L'). It means the expected value is one or several values selected from the <see cref="T:SuperMap.Chart.AttributeExpectedInputsS57">AttributeExpectedInputsS57</see> collection.
  168. </summary>
  169. </member>
  170. <member name="F:SuperMap.Chart.AttributeTypeChart.Float">
  171. <summary>
  172. Float ('F'). It means the expected value is the float value with the limited ranges, resolution, unit and format.
  173. </summary>
  174. </member>
  175. <member name="F:SuperMap.Chart.AttributeTypeChart.Integer">
  176. <summary>
  177. Integer ('I'). It means the expected value is the integer value with the limited ranges, resolution, unit and format.
  178. </summary>
  179. </member>
  180. <member name="F:SuperMap.Chart.AttributeTypeChart.CodedString">
  181. <summary>
  182. CodedString ('A'). It means the expected value is the ASCII string with the specified format.
  183. </summary>
  184. </member>
  185. <member name="F:SuperMap.Chart.AttributeTypeChart.FreeText">
  186. <summary>
  187. FreeText ('S'). It means the expected value is the alphanumeric mixed string with free format.
  188. </summary>
  189. </member>
  190. <member name="T:SuperMap.Chart.ChartAttributeInfo">
  191. <summary>
  192. The ChartAttributeInfo class. This class can be used to retrieve information on a chart object attribute such as the short name, the full name, the code, and the field value of the attribute.
  193. </summary>
  194. </member>
  195. <member name="M:SuperMap.Chart.ChartAttributeInfo.#ctor">
  196. <summary>
  197. Constructs a new ChartAttributeInfo object.
  198. </summary>
  199. </member>
  200. <member name="P:SuperMap.Chart.ChartAttributeInfo.Acronym">
  201. <summary>
  202. Gets the six-letter short name of an attribute.
  203. </summary>
  204. </member>
  205. <member name="P:SuperMap.Chart.ChartAttributeInfo.Name">
  206. <summary>
  207. Gets the attribute field name.
  208. </summary>
  209. </member>
  210. <member name="P:SuperMap.Chart.ChartAttributeInfo.Code">
  211. <summary>
  212. Gets the attribute code.
  213. </summary>
  214. </member>
  215. <member name="P:SuperMap.Chart.ChartAttributeInfo.Value">
  216. <summary>
  217. Gets the field value of the attribute.
  218. </summary>
  219. </member>
  220. <member name="T:SuperMap.Chart.ChartDatasetGroup">
  221. <summary>
  222. The chart dataset group class. This class offers a way of building the chart dataset group via the dataset group. It also offers the type, dataset name, and default scale of the chart dataset group. Besides, this class can get the feature dataset from the chart dataset group.
  223. </summary>
  224. </member>
  225. <member name="M:SuperMap.Chart.ChartDatasetGroup.CreateInstance(SuperMap.Data.DatasetGroup)">
  226. <summary>
  227. Create the chart dataset group according to the given dataset group.
  228. </summary>
  229. <param name="datasetGroup">The specified dataset group.</param>
  230. <returns>The chart dataset group which is successfully created.</returns>
  231. </member>
  232. <member name="M:SuperMap.Chart.ChartDatasetGroup.GetChartDatasetGroupType(SuperMap.Data.DatasetGroup)">
  233. <summary>
  234. Get the type of the chart dataset group from the given dataset group.
  235. </summary>
  236. <param name="datasetGroup">The specified dataset group.</param>
  237. <returns>The type of the chart dataset group from the given dataset group.</returns>
  238. </member>
  239. <member name="M:SuperMap.Chart.ChartDatasetGroup.GetFeatureDataset(System.Int32,SuperMap.Data.DatasetType)">
  240. <summary>
  241. Get the feature dataset with specified feature code and dataset type from the current chart dataset group.
  242. </summary>
  243. <param name="code">This specified feature code.</param>
  244. <param name="type">The specified dataset type. Point, line, region and tabular are supported.</param>
  245. <returns>The feature dataset.</returns>
  246. <overloads>
  247. <summary>
  248. Get the feature dataset from the current chart dataset group according to the specified parameters.
  249. </summary>
  250. </overloads>
  251. </member>
  252. <member name="M:SuperMap.Chart.ChartDatasetGroup.GetFeatureDataset(System.String,SuperMap.Data.DatasetType)">
  253. <summary>
  254. Get the feature dataset with specified feature acronym and dataset type from the current chart dataset group.
  255. </summary>
  256. <param name="acronym">This specified feature abbreviation.</param>
  257. <param name="type">The specified dataset type. Point, line, region and tabular are supported.</param>
  258. <returns>The feature dataset.</returns>
  259. </member>
  260. <member name="M:SuperMap.Chart.ChartDatasetGroup.GetFeatureDatasets">
  261. <summary>
  262. Get all feature datasets from the current chart dataset group.
  263. </summary>
  264. <returns>All the feature datasets of the chart dataset group.</returns>
  265. </member>
  266. <member name="M:SuperMap.Chart.ChartDatasetGroup.Dispose">
  267. <summary>
  268. Releases all resources that the object occupies.
  269. </summary>
  270. </member>
  271. <member name="P:SuperMap.Chart.ChartDatasetGroup.DatasetGroup">
  272. <summary>
  273. Gets the dataset group corresponding to the current chart dataset group.
  274. </summary>
  275. </member>
  276. <member name="P:SuperMap.Chart.ChartDatasetGroup.Type">
  277. <summary>
  278. Gets the type of the chart dataset group.
  279. </summary>
  280. </member>
  281. <member name="P:SuperMap.Chart.ChartDatasetGroup.CellName">
  282. <summary>
  283. Gets the chart dataset name of the current chart dataset group. The field is DSID-DSNM.
  284. </summary>
  285. </member>
  286. <member name="P:SuperMap.Chart.ChartDatasetGroup.CompilationScale">
  287. <summary>
  288. Gets the chart scale of the current chart dataset group. The scale is used for making and editing the chart.
  289. </summary>
  290. </member>
  291. <member name="T:SuperMap.Chart.ChartDatasetGroupType">
  292. <summary>
  293. This enumeration defines the type constant of chart dataset group.
  294. </summary>
  295. </member>
  296. <member name="F:SuperMap.Chart.ChartDatasetGroupType.Unknown">
  297. <summary>
  298. Unknown type. Not a chart, or an unknown type of chart.
  299. </summary>
  300. </member>
  301. <member name="F:SuperMap.Chart.ChartDatasetGroupType.S57DatasetGroup">
  302. <summary>
  303. The ineditable S-57 chart dataset group.
  304. </summary>
  305. </member>
  306. <member name="F:SuperMap.Chart.ChartDatasetGroupType.S57EditDatasetGroup">
  307. <summary>
  308. The editable S-57 chart dataset group.
  309. </summary>
  310. </member>
  311. <member name="T:SuperMap.Chart.ChartDisplayStyleType">
  312. <summary>
  313. This enum defines the chart display style constant.
  314. </summary>
  315. </member>
  316. <member name="F:SuperMap.Chart.ChartDisplayStyleType.NONE">
  317. <summary>
  318. Unknown type.
  319. </summary>
  320. </member>
  321. <member name="F:SuperMap.Chart.ChartDisplayStyleType.ENC">
  322. <summary>
  323. The chart type.
  324. </summary>
  325. </member>
  326. <member name="F:SuperMap.Chart.ChartDisplayStyleType.PAPERCHART">
  327. <summary>
  328. The paper chart type.
  329. </summary>
  330. </member>
  331. <member name="T:SuperMap.Chart.ChartEnvironment">
  332. <summary>
  333. The ChartEnvironment class. This class is used to add and delete displaying styles, get and set dictionary file path through ChartConfig.xml.
  334. </summary>
  335. </member>
  336. <member name="M:SuperMap.Chart.ChartEnvironment.Finalize">
  337. <summary>
  338. Releases unmanaged resources and performs other cleanup operations before the ChartEnvironment is reclaimed by garbage collection.
  339. </summary>
  340. </member>
  341. <member name="M:SuperMap.Chart.ChartEnvironment.#ctor">
  342. <summary>
  343. Creates a new object of ChartEnvironment.
  344. </summary>
  345. </member>
  346. <member name="M:SuperMap.Chart.ChartEnvironment.AddNewDisplayStyle(System.String,SuperMap.Chart.ChartDisplayStyleType)">
  347. <summary>
  348. Adds a new displaying style in the configuration file.
  349. </summary>
  350. <param name="newDisplayStyleName">The name of the new displaying style specified.</param>
  351. <param name="displayStyleType">The specified displaying style.</param>
  352. <returns>True if it is removed successfully; false otherwise.</returns>
  353. </member>
  354. <member name="M:SuperMap.Chart.ChartEnvironment.GetAreaLookupFile(System.String,System.Boolean)">
  355. <summary>
  356. Gets the path of the region style lookup table according to the specified parameters.
  357. </summary>
  358. <param name="displayStyleName">The name of the specified displaying style.</param>
  359. <param name="isSymbolized">The specified border whether to symbolize or not. If false, it gets the region style lookup table that isn't symbolized.</param>
  360. <returns>Gets the path of the region style lookup table.</returns>
  361. </member>
  362. <member name="M:SuperMap.Chart.ChartEnvironment.GetLineLookupFile(System.String)">
  363. <summary>
  364. Gets the path of the line style lookup table according to the specified displaying style.
  365. </summary>
  366. <param name="displayStyleName">The name of the specified displaying style.</param>
  367. <returns>Gets the path of the line style lookup table.</returns>
  368. </member>
  369. <member name="M:SuperMap.Chart.ChartEnvironment.GetPointLookupFile(System.String,System.Boolean)">
  370. <summary>
  371. Gets the path of the point style lookup table according to the specified parameters.
  372. </summary>
  373. <param name="displayStyleName">The name of the specified displaying style.</param>
  374. <param name="isSimplified">Whether the specified symbol is simplified. If false, gets the traditional point lookup table of the chart.</param>
  375. <returns>Gets the path of the point style lookup table.</returns>
  376. </member>
  377. <member name="M:SuperMap.Chart.ChartEnvironment.GetColourTable(System.String,SuperMap.Chart.ColourModeChart)">
  378. <summary>
  379. Gets the path of the color table according to the parameters.
  380. </summary>
  381. <param name="displayStyleName">The name of the specified displaying style.</param>
  382. <param name="colourMode">The specified color mode.</param>
  383. <returns>The path of the color look-up table that you get.</returns>
  384. </member>
  385. <member name="M:SuperMap.Chart.ChartEnvironment.GetDisplayStyleNames">
  386. <summary>
  387. Gets names of the configured displaying styles in the configuration file.
  388. </summary>
  389. <returns>The name set of the displaying names that you get.</returns>
  390. </member>
  391. <member name="M:SuperMap.Chart.ChartEnvironment.GetDisplayStyleType(System.String)">
  392. <summary>
  393. Gets the displaying style type according to the displaying style name.
  394. </summary>
  395. <param name="displayStyleName">The name of the specified displaying style.</param>
  396. <returns>The displaying style types that you get.</returns>
  397. </member>
  398. <member name="M:SuperMap.Chart.ChartEnvironment.RemoveDisplayStyle(System.String)">
  399. <summary>
  400. Removes the displaying style type according to the specified displaying style name.
  401. </summary>
  402. <param name="displayStyleName">The name of the specified displaying style.</param>
  403. <returns>True if it is removed successfully; false otherwise.</returns>
  404. </member>
  405. <member name="M:SuperMap.Chart.ChartEnvironment.SetAreaLookupFile(System.String,System.String,System.Boolean)">
  406. <summary>
  407. Set the path of the region style lookup table.
  408. </summary>
  409. <param name="source">The specified style lookup table path.</param>
  410. <param name="displayStyleName">The name of the specified displaying style.</param>
  411. <param name="isSymbolized">The specified border whether to symbolize or not. If false, the region style lookup table isn't symbolized.</param>
  412. <returns>True if it is removed successfully; false otherwise.</returns>
  413. </member>
  414. <member name="M:SuperMap.Chart.ChartEnvironment.SetColourTable(System.String,System.String,SuperMap.Chart.ColourModeChart)">
  415. <summary>
  416. Sets the color table path.
  417. </summary>
  418. <param name="source">The path of the color look-up table that you specify.</param>
  419. <param name="displayStyleName">The name of the specified displaying style.</param>
  420. <param name="colourMode">The specified color mode.</param>
  421. <returns>True if it is removed successfully; false otherwise.</returns>
  422. </member>
  423. <member name="M:SuperMap.Chart.ChartEnvironment.SetLineLookupFile(System.String,System.String)">
  424. <summary>
  425. Set the path of the line style lookup table.
  426. </summary>
  427. <param name="source">The specified style lookup table path.</param>
  428. <param name="displayStyleName">The name of the specified displaying style.</param>
  429. <returns>True if it is removed successfully; false otherwise.</returns>
  430. </member>
  431. <member name="M:SuperMap.Chart.ChartEnvironment.SetPointLookupFile(System.String,System.String,System.Boolean)">
  432. <summary>
  433. Set the path of the point style lookup table.
  434. </summary>
  435. <param name="source">The specified style lookup table path.</param>
  436. <param name="displayStyleName">The name of the specified displaying style.</param>
  437. <param name="isSimplified">Whether the specified point is simplified. If false, sets the traditional point lookup table of the chart.</param>
  438. <returns>True if it is removed successfully; false otherwise.</returns>
  439. </member>
  440. <member name="M:SuperMap.Chart.ChartEnvironment.Dispose">
  441. <summary>
  442. Disposes the local resources that ChartEnvironment occupies.
  443. </summary>
  444. </member>
  445. <member name="P:SuperMap.Chart.ChartEnvironment.AgencyFile">
  446. <summary>
  447. Gets or sets the agency file path.
  448. </summary>
  449. </member>
  450. <member name="P:SuperMap.Chart.ChartEnvironment.S57AttributeFile">
  451. <summary>
  452. Gets or sets the S-57 attribute file path.
  453. </summary>
  454. </member>
  455. <member name="P:SuperMap.Chart.ChartEnvironment.S57ObjectFile">
  456. <summary>
  457. Gets or sets the S-57 object file path.
  458. </summary>
  459. </member>
  460. <member name="P:SuperMap.Chart.ChartEnvironment.S57SpecsInfoFile">
  461. <summary>
  462. Gets or sets the S-57 specification information file path.
  463. </summary>
  464. </member>
  465. <member name="P:SuperMap.Chart.ChartEnvironment.S57SpecsObjectFile">
  466. <summary>
  467. Gets or sets the S-57 specification object file path.
  468. </summary>
  469. </member>
  470. <member name="T:SuperMap.Chart.ChartQuery">
  471. <summary>
  472. Query the records of one or more chart DatasetGroup objects based on query parameters, and set the spatial extent to query. You can use the <see cref="T:SuperMap.Chart.ChartQueryParameter">ChartQueryParameter</see> class to set the parameters. The parameters includes FeatureInfo, AttributeFilter and the types of features to query.
  473. </summary>
  474. </member>
  475. <member name="M:SuperMap.Chart.ChartQuery.Query(SuperMap.Data.DatasetGroup[],SuperMap.Chart.ChartQueryParameter[],SuperMap.Data.CursorType)">
  476. <summary>
  477. Finds feature objects conforming to the specified query parameters in one or more dataset group and returns the corresponding recordset.
  478. </summary>
  479. <param name="datasetGroups">The chart DatasetGroup array. It contains at least one DatasetGroup.</param>
  480. <param name="queryParameters">The given ChartQueryParameter array. It contains at least one ChartQueryParameter object.</param>
  481. <param name="cursorType">The given CursorType. The recordset can be modified when the CursorType is Dynamic, and the recordset is readOnly when the CursorType is Static.</param>
  482. <returns>ChartQueryResult array.</returns>
  483. <exception cref="T:System.ArgumentException">The length of datasetGroups is 0, or the length of queryParameters is 0.</exception>
  484. <overloads>
  485. <summary>
  486. Finds feature objects conforming to the specified query parameters in one or more chart dataset group and returns the correspoinding recordset.
  487. </summary>
  488. </overloads>
  489. </member>
  490. <member name="M:SuperMap.Chart.ChartQuery.Query(SuperMap.Data.DatasetGroup[],SuperMap.Data.Rectangle2D,SuperMap.Chart.ChartQueryParameter[],SuperMap.Data.CursorType)">
  491. <summary>
  492. Query the records in one or more chart DatasetGroup objects based on the given parameters in the given spatial extent.
  493. </summary>
  494. <param name="datasetGroups">The chart DatasetGroup array. It contains at least one DatasetGroup.</param>
  495. <param name="bounds">The specified space bounds.</param>
  496. <param name="queryParameters">The given ChartQueryParameter array. It contains at least one ChartQueryParameter object.</param>
  497. <param name="cursorType">The given CursorType. The recordset can be modified when the CursorType is Dynamic, and the recordset is readOnly when the CursorType is Static.</param>
  498. <returns>ChartQueryResult array.</returns>
  499. <exception cref="T:System.ArgumentException">The length of datasetGroups is 0, or the length of queryParameters is 0.</exception>
  500. </member>
  501. <member name="T:SuperMap.Chart.ChartQueryParameter">
  502. <summary>
  503. The ChartQueryParameter class is used to set the parameters for <see cref="T:SuperMap.Chart.ChartQuery">ChartQuery</see>. The parameters includes AttributeFilter, FeatureInfo and whether to query point (line/region) features.
  504. </summary>
  505. </member>
  506. <member name="M:SuperMap.Chart.ChartQueryParameter.#ctor">
  507. <summary>
  508. Constructs a new ChartQueryParameter object.
  509. </summary>
  510. </member>
  511. <member name="P:SuperMap.Chart.ChartQueryParameter.FeatureInfo">
  512. <summary>
  513. Gets or sets FeatureInfoSpec.
  514. </summary>
  515. </member>
  516. <member name="P:SuperMap.Chart.ChartQueryParameter.IsQueryPoint">
  517. <summary>
  518. Gets or sets whether to query point land mark.
  519. </summary>
  520. <value>The default value is true.</value>
  521. </member>
  522. <member name="P:SuperMap.Chart.ChartQueryParameter.IsQueryLine">
  523. <summary>
  524. Gets or sets whether to query line land mark.
  525. </summary>
  526. <value>The default value is true.</value>
  527. </member>
  528. <member name="P:SuperMap.Chart.ChartQueryParameter.IsQueryRegion">
  529. <summary>
  530. Gets or sets whether to query region land mark.
  531. </summary>
  532. <value>The default value is true.</value>
  533. </member>
  534. <member name="P:SuperMap.Chart.ChartQueryParameter.AttributeFilter">
  535. <summary>
  536. Gets or sets query filters.
  537. </summary>
  538. <value>The default value is String.Empty.</value>
  539. </member>
  540. <member name="T:SuperMap.Chart.ChartQueryResult">
  541. <summary>
  542. The ChartQueryResult class is used to get the result of ChartQuery, including dataset name and the corresponding ChartQueryResult array.
  543. </summary>
  544. </member>
  545. <member name="P:SuperMap.Chart.ChartQueryResult.DatasetGroupName">
  546. <summary>
  547. Gets the name of the DatasetGroup in the ChartQueryResult.
  548. </summary>
  549. </member>
  550. <member name="P:SuperMap.Chart.ChartQueryResult.Recordsets">
  551. <summary>
  552. Gets the result Recordset array in the ChartQueryResult.
  553. </summary>
  554. </member>
  555. <member name="T:SuperMap.Chart.ChartDatasetGroupManager">
  556. <summary>
  557. The ChartDatasetGroupManager class is used to create an editable S-57 chart dataset group, as well as the conversion between the editable S-57 dataset group and non-editable S-57 chart dataset group.
  558. </summary>
  559. </member>
  560. <member name="M:SuperMap.Chart.ChartDatasetGroupManager.ConvertToS57DatasetGroup(SuperMap.Chart.S57EditDatasetGroup,SuperMap.Data.Datasource)">
  561. <summary>
  562. Converts the specified editable S-57 chart dataset group into the S-57 chart dataset group.
  563. </summary>
  564. <param name="s57EditDatasetGroup">The specified editable S-57 dataset grouping.</param>
  565. <param name="outputDatasource">The specified output datasource.</param>
  566. <returns>A chart dataset group that has been converted successfully.</returns>
  567. </member>
  568. <member name="M:SuperMap.Chart.ChartDatasetGroupManager.CreateS57EditDatasetGroup(SuperMap.Chart.S57CellInformation,SuperMap.Data.Datasource,System.String,System.UInt16)">
  569. <summary>
  570. Creates a new editable S-57 chart dataset group according to the specified S-57 chart information definition parameter.
  571. </summary>
  572. <param name="s57CellInformation">The specified S-57 chart information definition parameter object.</param>
  573. <param name="outputDatasource">The specified output datasource.</param>
  574. <param name="FIDNSequence">The specified FIDN sequence name.</param>
  575. <param name="FIDS">The specified FIDS.</param>
  576. <returns>The created editable S-57 chart dataset group.</returns>
  577. </member>
  578. <member name="M:SuperMap.Chart.ChartDatasetGroupManager.ConvertToS57EditDatasetGroup(SuperMap.Chart.S57DatasetGroup,SuperMap.Data.Datasource,System.String,System.UInt16)">
  579. <summary>
  580. Converts the specified S-57 chart dataset group into the editable S-57 chart dataset group.
  581. </summary>
  582. <param name="s57DatasetGroup">The specified editable S-57 chart dataset group object.</param>
  583. <param name="outputDatasource">The specified output datasource.</param>
  584. <param name="FIDNSequence">The specified FIDNSequence name.</param>
  585. <param name="FIDS">The specified FIDS.</param>
  586. <returns>The converted editable S-57 chart dataset group.</returns>
  587. </member>
  588. <member name="E:SuperMap.Chart.ChartDatasetGroupManager.Stepped">
  589. <summary>
  590. The event is trigged when the process bar is activated.
  591. </summary>
  592. </member>
  593. <member name="T:SuperMap.Chart.ChartValidateParameter">
  594. <summary>
  595. The ChartValidateParameter class provides properties which can set the validation types of chart data, such as the topological relationship of spatial features, chart information parameters, water depth, the association information of features and feature objects.
  596. </summary>
  597. </member>
  598. <member name="M:SuperMap.Chart.ChartValidateParameter.#ctor">
  599. <summary>
  600. Constructs a new ChartValidateParameter object.
  601. </summary>
  602. </member>
  603. <member name="P:SuperMap.Chart.ChartValidateParameter.AreCheckMandatoryS57Fields">
  604. <summary>
  605. Gets or sets whether to check the parameter settings of a single chart. True denotes checking, while false denotes no checking. If the check is wrong, then it will be not to continue performing other checks.
  606. </summary>
  607. <value>The default value is false.</value>
  608. </member>
  609. <member name="P:SuperMap.Chart.ChartValidateParameter.IsCheckChainNodeTopology">
  610. <summary>
  611. Gets or sets whether to check the chain node topology. True means to check, while false means not to check.
  612. </summary>
  613. <value>The default value is false.</value>
  614. </member>
  615. <member name="P:SuperMap.Chart.ChartValidateParameter.AreCheckFeatureRelationships">
  616. <summary>
  617. Gets or sets whether to check the feature relationships. True means to check, while false means not to check.
  618. </summary>
  619. <value>The default value is false.</value>
  620. </member>
  621. <member name="P:SuperMap.Chart.ChartValidateParameter.AreCheckSoundings">
  622. <summary>
  623. Gets or sets whether to check the soundings. True means to check, while false means not to check.
  624. </summary>
  625. <value>The default value is false.</value>
  626. </member>
  627. <member name="P:SuperMap.Chart.ChartValidateParameter.AreCheckFeatureObjects">
  628. <summary>
  629. Gets or sets whether to check the feature objects. True means to check, while false means not to check.
  630. </summary>
  631. <value>The default value is false.</value>
  632. </member>
  633. <member name="P:SuperMap.Chart.ChartValidateParameter.AreCheckSpatialAttributes">
  634. <summary>
  635. Gets or sets whether to check the attributes of spatial features. True means to check, while false means not to check.
  636. </summary>
  637. <value>The default value is false.</value>
  638. </member>
  639. <member name="T:SuperMap.Chart.ChartValidateResult">
  640. <summary>
  641. The S-58 chart data check result class is used for obtaining the results of S-58 chart data check, including check number and error information.
  642. </summary>
  643. </member>
  644. <member name="P:SuperMap.Chart.ChartValidateResult.CheckID">
  645. <summary>
  646. Gets the CheckID.
  647. </summary>
  648. </member>
  649. <member name="P:SuperMap.Chart.ChartValidateResult.ErrorMessage">
  650. <summary>
  651. Gets the error information of the check item.
  652. </summary>
  653. </member>
  654. <member name="T:SuperMap.Chart.ColourModeChart">
  655. <summary>
  656. This enumeration class defines the constants representing the types of modes for setting chart colors.
  657. </summary>
  658. </member>
  659. <member name="F:SuperMap.Chart.ColourModeChart.DayBright">
  660. <summary>
  661. The day mode.
  662. </summary>
  663. </member>
  664. <member name="F:SuperMap.Chart.ColourModeChart.Dusk">
  665. <summary>
  666. The dusk mode.
  667. </summary>
  668. </member>
  669. <member name="F:SuperMap.Chart.ColourModeChart.Night">
  670. <summary>
  671. The night mode.
  672. </summary>
  673. </member>
  674. <member name="T:SuperMap.Chart.Conversion.DataExportChart">
  675. <summary>
  676. <para>The DataExportChart class. This class can export data into the standard chart data (*.000 and other format files). </para>
  677. </summary>
  678. /// <summary>
  679. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.DataExportChart">DataExportChart</see> object.
  680. </summary></member>
  681. <member name="M:SuperMap.Chart.Conversion.DataExportChart.#ctor">
  682. <summary>
  683. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.DataExportChart">DataExportChart</see> object.
  684. </summary>
  685. </member>
  686. <member name="M:SuperMap.Chart.Conversion.DataExportChart.Run">
  687. <summary>
  688. The exported result include the <see cref="T:SuperMap.Chart.Conversion.ExportResultChart">ExportResultChart</see> array corresponding with the successful and failure task of exporting.
  689. </summary>
  690. <returns>Return the result of export, including the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> arrays of success to export and the ExportSettingChart arrays of fail to export.</returns>
  691. </member>
  692. <member name="M:SuperMap.Chart.Conversion.DataExportChart.Finalize">
  693. <summary>
  694. Releases the resources before recycling DataExportChart.
  695. </summary>
  696. </member>
  697. <member name="M:SuperMap.Chart.Conversion.DataExportChart.Dispose">
  698. <summary>
  699. Releases all resources that the objects occupy.
  700. </summary>
  701. </member>
  702. <member name="E:SuperMap.Chart.Conversion.DataExportChart.Stepped">
  703. <summary>
  704. The event is trigged when the process bar is activated.
  705. </summary>
  706. </member>
  707. <member name="P:SuperMap.Chart.Conversion.DataExportChart.ExportSettingCharts">
  708. <summary>
  709. Gets or sets the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object, which could be used to implement several export settings.
  710. </summary>
  711. <value>The default is the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object,which is used to store the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> object, and the default number of the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> object is zero.</value>
  712. </member>
  713. <member name="T:SuperMap.Chart.Conversion.DataImportChart">
  714. <summary>
  715. The ImportChart object. This class could import the chart data (000 format file, etc. ) into the chart dataset group supported by the SuperMap.
  716. </summary>
  717. </member>
  718. <member name="M:SuperMap.Chart.Conversion.DataImportChart.#ctor">
  719. <summary>
  720. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.DataImportChart">DataImportChart</see>.
  721. </summary>
  722. </member>
  723. <member name="M:SuperMap.Chart.Conversion.DataImportChart.Run">
  724. <summary>
  725. Implements the operation of importing dataset, return the <see cref="T:SuperMap.Chart.Conversion.ImportResultChart">ImportResultChart</see> object as the result of import.
  726. </summary>
  727. <returns>Returns the result of import, including the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> collection corresponding to the successful or failed task.</returns>
  728. </member>
  729. <member name="M:SuperMap.Chart.Conversion.DataImportChart.Finalize">
  730. <summary>
  731. Releases the resources before recycling DataImportChart.
  732. </summary>
  733. </member>
  734. <member name="M:SuperMap.Chart.Conversion.DataImportChart.Dispose">
  735. <summary>
  736. Releases all resources that the objects occupy.
  737. </summary>
  738. </member>
  739. <member name="E:SuperMap.Chart.Conversion.DataImportChart.Stepped">
  740. <summary>
  741. The event is trigged when the process bar is activated.
  742. </summary>
  743. </member>
  744. <member name="P:SuperMap.Chart.Conversion.DataImportChart.ImportSettingCharts">
  745. <summary>
  746. Gets or sets the settings for importing data. This method can be used to complete settings of many imports.
  747. </summary>
  748. <value>The default value is a <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts </see> object, which is used to store the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> object. The default number of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> object is 0.</value>
  749. </member>
  750. <member name="T:SuperMap.Chart.DictionaryManagerChart">
  751. <summary>
  752. The DictionaryManagerChart class. This class gets the agency, attribute, feature information, feature specification of product specification, S-58 check item, specification information file, and specification objects file.
  753. </summary>
  754. </member>
  755. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAgencys">
  756. <summary>
  757. Gets the <see cref="T:SuperMap.Chart.AgencyS57">AgencyS57</see> collection object. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.GetAgencyS57s">GetAgencyS57s</see>.
  758. </summary>
  759. <returns>The AgencyS57 collection object.</returns>
  760. </member>
  761. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAgencyS57s">
  762. <summary>
  763. Gets the <see cref="T:SuperMap.Chart.AgencyS57">AgencyS57</see> collection object.
  764. </summary>
  765. <returns>The AgencyS57 collection object.</returns>
  766. </member>
  767. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoS57s">
  768. <summary>
  769. Gets the <see cref="T:SuperMap.Chart.FeatureInfoS57">FeatureInfoS57</see> collection object.
  770. </summary>
  771. <returns>The FeatureInfoS57 collection object.</returns>
  772. </member>
  773. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAttributeS57s">
  774. <summary>
  775. Gets the set of <see cref="T:SuperMap.Chart.AttributeS57">AttributeS57</see>.
  776. </summary>
  777. <returns>The FeatureInfoS57 collection object.</returns>
  778. </member>
  779. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpecss">
  780. <summary>
  781. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpecs">FeatureInfoSpecs</see> object. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpecs">GetFeatureInfoSpecs()</see>.
  782. </summary>
  783. <returns>The FeatureInfoSpecs collection object.</returns>
  784. </member>
  785. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpecs">
  786. <summary>
  787. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpec">FeatureInfoSpec</see> collection object.
  788. </summary>
  789. <returns>The FeatureInfoSpecs collection object.</returns>
  790. </member>
  791. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAgencyS57(System.Int32)">
  792. <summary>
  793. Gets the <see cref="T:SuperMap.Chart.AgencyS57">AgencyS57</see> object according to the given agency code.
  794. </summary>
  795. <param name="nCode">The given agency code.</param>
  796. <returns>The AgencyS57 object.</returns>
  797. </member>
  798. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAgencyS57(System.String)">
  799. <summary>
  800. Gets the <see cref="T:SuperMap.Chart.AgencyS57">AgencyS57</see> object according to the specified agency acronym.
  801. </summary>
  802. <param name="token">The specified agency acronym.</param>
  803. <returns>The AgencyS57 object.</returns>
  804. </member>
  805. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoS57(System.Int32)">
  806. <summary>
  807. Gets the <see cref="T:SuperMap.Chart.FeatureInfoS57">FeatureInfoS57</see> object according to the specified feature ID.
  808. </summary>
  809. <param name="nCode">The specified feature ID.</param>
  810. <returns>The FeatureInfoS57 object.</returns>
  811. </member>
  812. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoS57(System.String)">
  813. <summary>
  814. Gets the <see cref="T:SuperMap.Chart.FeatureInfoS57">FeatureInfoS57</see> object according to the specified feature acronym.
  815. </summary>
  816. <param name="acronym">The specified feature acronym.</param>
  817. <returns>The FeatureInfoS57 object.</returns>
  818. </member>
  819. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAttributeS57(System.Int32)">
  820. <summary>
  821. Gets the <see cref="T:SuperMap.Chart.AttributeS57">AttributeS5757</see> object according to the specified feature attribute code.
  822. </summary>
  823. <param name="nCode">The specified feature attribute code.</param>
  824. <returns>The FeatureInfoS57 object.</returns>
  825. </member>
  826. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetAttributeS57(System.String)">
  827. <summary>
  828. Gets the <see cref="T:SuperMap.Chart.AttributeS57">FeatureInfoS57</see> object according to the acronym of the specified feature attribute.
  829. </summary>
  830. <param name="acronym">The acronym of the specified feature attribute.</param>
  831. <returns>The FeatureInfoS57 object.</returns>
  832. </member>
  833. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpecs(System.Int32)">
  834. <summary>
  835. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpecs">FeatureInfoSpecs</see> object according to the specified feature code. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpec(System.Int32)">GetFeatureInfoSpec(Int32)</see>.
  836. </summary>
  837. <param name="nCode">The specified feature ID.</param>
  838. <returns>The FeatureInfoSpecs object.</returns>
  839. </member>
  840. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpecs(System.String)">
  841. <summary>
  842. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpecs">FeatureInfoSpecs</see> object according to the specified feature acronym. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpec(System.String)">GetFeatureInfoSpec(String)</see>.
  843. </summary>
  844. <param name="acronym">The specified feature acronym.</param>
  845. <returns>The FeatureInfoSpecs object.</returns>
  846. </member>
  847. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpec(System.Int32)">
  848. <summary>
  849. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpec">FeatureInfoSpecs</see> object according to the specified feature code.
  850. </summary>
  851. <param name="nCode">The specified feature ID.</param>
  852. <returns>The FeatureInfoSpecs object.</returns>
  853. </member>
  854. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetFeatureInfoSpec(System.String)">
  855. <summary>
  856. Gets the <see cref="T:SuperMap.Chart.FeatureInfoSpec">FeatureInfoSpecs</see> object according to the specified feature acronym.
  857. </summary>
  858. <param name="acronym">The specified feature acronym.</param>
  859. <returns>The FeatureInfoSpecs object.</returns>
  860. </member>
  861. <member name="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecsObjectsFile">
  862. <summary>
  863. Reset S57SpecsObjectsFile. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecObjectsFile">ResetS57SpecObjectsFile</see>.
  864. </summary>
  865. <returns>A Boolean value. It's used to determine whether the reset is successful. Return true if successful, or false otherwise.</returns>
  866. </member>
  867. <member name="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecsInfosFile">
  868. <summary>
  869. Reset S57SpecsInfosFile. It is obsolete. Replace it with <see cref="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecInfosFile">ResetS57SpecObjectsFile</see>.
  870. </summary>
  871. <returns>A Boolean value. It's used to determine whether the reset is successful. Return true if successful, or false otherwise.</returns>
  872. </member>
  873. <member name="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecObjectsFile">
  874. <summary>
  875. Resets the S-57 specification dictionary file.
  876. </summary>
  877. <returns>A Boolean value. It's used to determine whether the reset is successful. Return true if successful, or false otherwise.</returns>
  878. </member>
  879. <member name="M:SuperMap.Chart.DictionaryManagerChart.ResetS57SpecInfosFile">
  880. <summary>
  881. Resets the basic S-57 specification information file.
  882. </summary>
  883. <returns>A Boolean value. It's used to determine whether the reset is successful. Return true if successful, or false otherwise.</returns>
  884. </member>
  885. <member name="M:SuperMap.Chart.DictionaryManagerChart.GetS58Information(System.Int32)">
  886. <summary>
  887. Gets S-58 check items information according to the specified check item number, including check content, error level and basis.
  888. </summary>
  889. <param name="checkID">The specified S-58 check ID.</param>
  890. <returns>The S-58 check information of the specified ID.</returns>
  891. </member>
  892. <member name="T:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs">
  893. <summary>
  894. Provides the data of the ExportChartSteppedEventArgs event.
  895. </summary>
  896. </member>
  897. <member name="M:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.#ctor(System.String,System.String,System.Int32,System.Int32,SuperMap.Chart.Conversion.ExportSettingChart,System.Int32,System.Boolean)">
  898. <summary>
  899. Initializes a new instance of the SteppedEventArgs object
  900. </summary>
  901. <param name="title">The title of the current progress bar.</param>
  902. <param name="message">The progress information of the current progress bar.</param>
  903. <param name="percent">The percent of the current process have done</param>
  904. <param name="subPercent">The completion percent of the current ongoing sub-operation.</param>
  905. <param name="currentTask">The information of the current ongoing sub-operation.</param>
  906. <param name="count">Gets the count of the items of the tasks.</param>
  907. <param name="cancel">Whether to cancel all tasks.</param>
  908. </member>
  909. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.TotalPercent">
  910. <summary>
  911. Gets the completion percent of the current operation.
  912. </summary>
  913. </member>
  914. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.SubPercent">
  915. <summary>
  916. Gets the percent of the current sub item.
  917. </summary>
  918. </member>
  919. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.CurrentTask">
  920. <summary>
  921. Gets the current ongoing item information, and returns the imported Setting directly.
  922. </summary>
  923. </member>
  924. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.Count">
  925. <summary>
  926. Gets the count of the items of the tasks.
  927. </summary>
  928. </member>
  929. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.Cancel">
  930. <summary>
  931. Gets or sets whether to cancel all the tasks.
  932. </summary>
  933. </member>
  934. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.Title">
  935. <summary>
  936. Gets the title of the current progress bar.
  937. </summary>
  938. </member>
  939. <member name="P:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs.Message">
  940. <summary>
  941. Gets the progress information of the current progress bar.
  942. </summary>
  943. </member>
  944. <member name="T:SuperMap.Chart.Conversion.ExportChartSteppedEventHandler">
  945. <summary>
  946. Represents the method that handles a Stepped event.
  947. </summary>
  948. <param name="sender">The specified source event.</param>
  949. <param name="e">The <see cref="T:SuperMap.Chart.Conversion.ExportChartSteppedEventArgs">ExportChartSteppedEventArgs</see> class.</param>
  950. </member>
  951. <member name="T:SuperMap.Chart.Conversion.ExportResultChart">
  952. <summary>
  953. The ExportResultChart class, which provides the two methods such as <see cref="P:SuperMap.Chart.Conversion.ExportResultChart.SucceedSettings">SucceedSettings</see>, <see cref="P:SuperMap.Chart.Conversion.ExportResultChart.FailedSettings">FailedSettings</see> to get the successful and the failed import settings.
  954. </summary>
  955. </member>
  956. <member name="P:SuperMap.Chart.Conversion.ExportResultChart.SucceedSettings">
  957. <summary>
  958. Gets the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> set of the successful tasks.
  959. </summary>
  960. </member>
  961. <member name="P:SuperMap.Chart.Conversion.ExportResultChart.FailedSettings">
  962. <summary>
  963. Gets the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> set of the failed tasks.The user can get whether the count of the failed tasks is zero to determine whether imported successfully.
  964. </summary>
  965. </member>
  966. <member name="T:SuperMap.Chart.Conversion.ExportSettingChart">
  967. <summary>
  968. The ExportSettingChart class.
  969. </summary>
  970. </member>
  971. <member name="M:SuperMap.Chart.Conversion.ExportSettingChart.#ctor">
  972. <summary>
  973. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see>.
  974. </summary>
  975. </member>
  976. <member name="P:SuperMap.Chart.Conversion.ExportSettingChart.TargetFilePath">
  977. <summary>
  978. Gets or sets the path of the target file to be exported.
  979. </summary>
  980. <value>The default value is String.Empty.</value>
  981. </member>
  982. <member name="P:SuperMap.Chart.Conversion.ExportSettingChart.IsOverwrite">
  983. <summary>
  984. Gets or sets whether to cover the files with the same name by force when exporting the files to the same directory.
  985. </summary>
  986. <value>The default is false, indicating that the export operation doesn't be performed, otherwise covering files by force.</value>
  987. </member>
  988. <member name="P:SuperMap.Chart.Conversion.ExportSettingChart.TargetFileType">
  989. <summary>
  990. Gets or sets the type of the chart to be exported.
  991. </summary>
  992. <value>The default value is FileTypeChart.None.</value>
  993. </member>
  994. <member name="T:SuperMap.Chart.Conversion.ExportSettingCharts">
  995. <summary>
  996. The ExportSettingCharts class.
  997. </summary>
  998. </member>
  999. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.#ctor">
  1000. <summary>
  1001. The Constructor.
  1002. </summary>
  1003. </member>
  1004. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.Add(SuperMap.Chart.Conversion.ExportSettingChart)">
  1005. <summary>
  1006. Adds the specified <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart </see> object into the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object.
  1007. </summary>
  1008. <param name="exportSetting">The specified ExportSettingChart object.</param>
  1009. <returns>The index value corresponding to the newly added ExportSettingChart object.</returns>
  1010. </member>
  1011. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.Insert(System.Int32,SuperMap.Chart.Conversion.ExportSettingChart)">
  1012. <summary>
  1013. Inserts the specified <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart"> ExportSettingChart</see> object at the specified index of the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> class.
  1014. </summary>
  1015. <param name="index">The specified index.</param>
  1016. <param name="exportSetting">The specified ExportSettingChart object.</param>
  1017. <returns>Returns true if successful, otherwise false.</returns>
  1018. </member>
  1019. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.Remove(System.Int32)">
  1020. <summary>
  1021. Removes the ExportSettingChart objects from the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object with the specified index.
  1022. </summary>
  1023. <param name="index">The specified index value.</param>
  1024. <returns>Returns true if successful, otherwise false.</returns>
  1025. </member>
  1026. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.Clear">
  1027. <summary>
  1028. Clears all the ExportSettingChart objects from the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object.
  1029. </summary>
  1030. </member>
  1031. <member name="M:SuperMap.Chart.Conversion.ExportSettingCharts.GetEnumerator">
  1032. <summary>
  1033. Gets the IEnumerator object.
  1034. </summary>
  1035. <returns>return the enumerator of the dataset set</returns>
  1036. </member>
  1037. <member name="P:SuperMap.Chart.Conversion.ExportSettingCharts.Count">
  1038. <summary>
  1039. Gets the total count of the features of the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object.
  1040. </summary>
  1041. <returns>Gets the total count of the features of the ExportSettingCharts object.</returns>
  1042. <value>The default value is 0.</value>
  1043. </member>
  1044. <member name="P:SuperMap.Chart.Conversion.ExportSettingCharts.Item(System.Int32)">
  1045. <summary>
  1046. Gets the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> object with specified index in the <see cref="T:SuperMap.Chart.Conversion.ExportSettingCharts">ExportSettingCharts</see> object.
  1047. </summary>
  1048. <param name="index">The specified index value. index must be greater than 0 and less than the Count, otherwise an exception is thrown.</param>
  1049. <returns>The ExportSettingChart object corresponding to the specified index value.</returns>
  1050. </member>
  1051. <member name="T:SuperMap.Chart.Conversion.ExportSettingChartS57">
  1052. <summary>
  1053. The ExportSettingChartS57 class. This class inherits from the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChart">ExportSettingChart</see> class.
  1054. </summary>
  1055. </member>
  1056. <member name="M:SuperMap.Chart.Conversion.ExportSettingChartS57.#ctor">
  1057. <summary>
  1058. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.ExportSettingChartS57">ExportSettingChartS57</see>.
  1059. </summary>
  1060. </member>
  1061. <member name="M:SuperMap.Chart.Conversion.ExportSettingChartS57.#ctor(SuperMap.Chart.Conversion.ExportSettingChartS57)">
  1062. <summary>
  1063. Builds a new object that is the same with the given ExportSettingChartS57 object.
  1064. </summary>
  1065. <param name="exportSettingChartS57">The specified ExportSettingChartS57 object.</param>
  1066. </member>
  1067. <member name="M:SuperMap.Chart.Conversion.ExportSettingChartS57.#ctor(SuperMap.Data.DatasetGroup,System.String)">
  1068. <summary>
  1069. Constructs a new <see cref="T:SuperMap.Chart.Conversion.ExportSettingChartS57">ExportSettingChartS57</see> object according to the specified parameter.
  1070. </summary>
  1071. <param name="sourceData">The specified outputted dataset object.</param>
  1072. <param name="targetFilePath">The path of the specified exported file.</param>
  1073. </member>
  1074. <member name="P:SuperMap.Chart.Conversion.ExportSettingChartS57.SourceData">
  1075. <summary>
  1076. Gets or sets the whole chart DatasetGroup object to export.
  1077. </summary>
  1078. </member>
  1079. <member name="P:SuperMap.Chart.Conversion.ExportSettingChartS57.TargetFileType">
  1080. <summary>
  1081. Gets or sets the type of the chart to be exported.
  1082. </summary>
  1083. <value>The default value is <see cref="F:SuperMap.Chart.Conversion.FileTypeChart.S57">FileTypeChart.S57</see>.</value>
  1084. </member>
  1085. <member name="T:SuperMap.Chart.FeatureInfoS57">
  1086. <summary>
  1087. The FeatureInfoS57 class. It's used to represent the basic information of the FeatureS57, which includes the acronym, name, type and other related information.
  1088. </summary>
  1089. </member>
  1090. <member name="P:SuperMap.Chart.FeatureInfoS57.Acronym">
  1091. <summary>
  1092. Gets the acronym of the feature.
  1093. </summary>
  1094. <value>The default value is String.Empty.</value>
  1095. </member>
  1096. <member name="P:SuperMap.Chart.FeatureInfoS57.Name">
  1097. <summary>
  1098. Gets the name of the feature.
  1099. </summary>
  1100. <value>The default value is String.Empty.</value>
  1101. </member>
  1102. <member name="P:SuperMap.Chart.FeatureInfoS57.Definition">
  1103. <summary>
  1104. Gets the definition of the feature.
  1105. </summary>
  1106. <value>The default value is String.Empty.</value>
  1107. </member>
  1108. <member name="P:SuperMap.Chart.FeatureInfoS57.References">
  1109. <summary>
  1110. Gets the reference information of the feature.
  1111. </summary>
  1112. <value>The default value is String.Empty.</value>
  1113. </member>
  1114. <member name="P:SuperMap.Chart.FeatureInfoS57.Remarks">
  1115. <summary>
  1116. Gets the remark information of the feature.
  1117. </summary>
  1118. <value>The default value is String.Empty.</value>
  1119. </member>
  1120. <member name="P:SuperMap.Chart.FeatureInfoS57.FeatureType">
  1121. <summary>
  1122. Gets the type of the feature.
  1123. </summary>
  1124. <value>The default value is <see cref="F:SuperMap.Chart.FeatureTypeChart.None">FeatureTypeChart.None</see>.</value>
  1125. </member>
  1126. <member name="P:SuperMap.Chart.FeatureInfoS57.Code">
  1127. <summary>
  1128. Gets the code of the feature.
  1129. </summary>
  1130. <value>The default value is 0.</value>
  1131. </member>
  1132. <member name="T:SuperMap.Chart.FeatureInfoSpecs">
  1133. <summary>
  1134. The FeatureInfoSpecs class. It's used to describe the basic information of the specification feature of the products, which includes the name, type and the related attributes. For example, the ENC 3.1 version. It is obsolete. Replace it with <see cref="T:SuperMap.Chart.FeatureInfoSpec">FeatureInfoSpec</see>.
  1135. </summary>
  1136. </member>
  1137. <member name="P:SuperMap.Chart.FeatureInfoSpecs.Acronym">
  1138. <summary>
  1139. Gets the acronym of the feature.
  1140. </summary>
  1141. <value>The default value is String.Empty.</value>
  1142. </member>
  1143. <member name="P:SuperMap.Chart.FeatureInfoSpecs.Name">
  1144. <summary>
  1145. Gets the name of the object.
  1146. </summary>
  1147. <value>The default value is String.Empty.</value>
  1148. </member>
  1149. <member name="P:SuperMap.Chart.FeatureInfoSpecs.LocalName">
  1150. <summary>
  1151. Gets the localization name of the object.
  1152. </summary>
  1153. <value>The default value is String.Empty.</value>
  1154. </member>
  1155. <member name="P:SuperMap.Chart.FeatureInfoSpecs.Code">
  1156. <summary>
  1157. Gets the code of the feature.
  1158. </summary>
  1159. <value>The default value is 0.</value>
  1160. </member>
  1161. <member name="P:SuperMap.Chart.FeatureInfoSpecs.Primitive">
  1162. <summary>
  1163. Gets the object type which could be applied by the feature.
  1164. </summary>
  1165. <value>The default value is String.Empty.</value>
  1166. </member>
  1167. <member name="P:SuperMap.Chart.FeatureInfoSpecs.AttributeFields">
  1168. <summary>
  1169. Gets the attribute fields of the feature.
  1170. </summary>
  1171. </member>
  1172. <member name="T:SuperMap.Chart.S57FeatureObjectIDInfo">
  1173. <summary>
  1174. -57 feature object identifier information class.
  1175. </summary>
  1176. </member>
  1177. <member name="M:SuperMap.Chart.S57FeatureObjectIDInfo.#ctor">
  1178. <summary>
  1179. Constructs a new S57FeatureObjectIDInfo object.
  1180. </summary>
  1181. </member>
  1182. <member name="M:SuperMap.Chart.S57FeatureObjectIDInfo.#ctor(System.String,System.String)">
  1183. <summary>
  1184. Constructs a new S57FeatureObjectIDInfo object according to given parameters.
  1185. </summary>
  1186. <param name="acronym">The specified feature acronym. </param>
  1187. <param name="featureObjectID">The specified FOID, i.e., long name.</param>
  1188. </member>
  1189. <member name="P:SuperMap.Chart.S57FeatureObjectIDInfo.Acronym">
  1190. <summary>
  1191. Gets or sets the feature acronym.
  1192. </summary>
  1193. <value>The default value is null.</value>
  1194. </member>
  1195. <member name="P:SuperMap.Chart.S57FeatureObjectIDInfo.FeatureObjectID">
  1196. <summary>
  1197. Gets or sets FOID, i.e., long name.
  1198. </summary>
  1199. <value>The default value is null.</value>
  1200. </member>
  1201. <member name="T:SuperMap.Chart.S57FeatureRelationships">
  1202. <summary>
  1203. The S-57 feature relationship class. This class provides the creation and maintenance of feature relationships (including master-slave relationship and equal relationship).
  1204. </summary>
  1205. </member>
  1206. <member name="M:SuperMap.Chart.S57FeatureRelationships.#ctor">
  1207. <summary>
  1208. Creates a new FeatureRelationships object.
  1209. </summary>
  1210. </member>
  1211. <member name="M:SuperMap.Chart.S57FeatureRelationships.#ctor(SuperMap.Chart.S57EditDatasetGroup)">
  1212. <summary>
  1213. Constructs a new FeatureRelationships object according to the specified S57EditDatasetGroup object.
  1214. </summary>
  1215. <param name="s57EditDatasetGroup">The specified S57EditDatasetGroup object.</param>
  1216. </member>
  1217. <member name="M:SuperMap.Chart.S57FeatureRelationships.SetS57EditDatasetGroup(SuperMap.Chart.S57EditDatasetGroup)">
  1218. <summary>
  1219. Set the editable S-57 chart dataset group.
  1220. </summary>
  1221. <param name="s57EditDatasetGroup">The editable S-57 chart dataset group.</param>
  1222. </member>
  1223. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetMasterSlaves">
  1224. <summary>
  1225. Gets all the master-slave relationships in the current chart.
  1226. </summary>
  1227. <returns>All the master-slave relationships in the current chart. The dictionary key is the FOID of the master feature, and its value is the FOID of the slave feature.</returns>
  1228. </member>
  1229. <member name="M:SuperMap.Chart.S57FeatureRelationships.CreateMasterSlave(SuperMap.Chart.S57FeatureObjectIDInfo,SuperMap.Chart.S57FeatureObjectIDInfo[])">
  1230. <summary>
  1231. Creates a new master-slave relationship.
  1232. </summary>
  1233. <param name="masterFOIDInfo">The specified FOID of the specified master feature.</param>
  1234. <param name="slaveFOIDInfos">The specified FOID of the specified slave feature.</param>
  1235. <returns>True if successful; otherwise, false.</returns>
  1236. </member>
  1237. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetMasterSlave(System.String)">
  1238. <summary>
  1239. Gets the FOID of the slave feature according to the specified master feature.
  1240. </summary>
  1241. <param name="masterFOID">The specified FOID of the specified master feature.</param>
  1242. <returns>The feature identifier information array of the slave feature corresponding to the specified master feature.</returns>
  1243. </member>
  1244. <member name="M:SuperMap.Chart.S57FeatureRelationships.SetMasterSlave(SuperMap.Chart.S57FeatureObjectIDInfo,SuperMap.Chart.S57FeatureObjectIDInfo[])">
  1245. <summary>
  1246. Resets the master-slave relationship.
  1247. </summary>
  1248. <param name="masterFOIDInfo">The specified FOID of the specified master feature.</param>
  1249. <param name="slaveFOIDInfos">The specified feature identifier information array of the specified slave feature.</param>
  1250. <returns>True if successful; otherwise, false.</returns>
  1251. </member>
  1252. <member name="M:SuperMap.Chart.S57FeatureRelationships.RemoveMasterSlave(System.String)">
  1253. <summary>
  1254. Deletes the master-slave relationship corresponding to the feature specified with the FOID.
  1255. </summary>
  1256. <param name="masterFOID">The specified FOID of the specified master feature.</param>
  1257. <returns>True if successful; otherwise, false.</returns>
  1258. </member>
  1259. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetCollections">
  1260. <summary>
  1261. Gets the information of all the collection features in the current chart.
  1262. </summary>
  1263. <returns>The information of all the collection features in the current chart.</returns>
  1264. </member>
  1265. <member name="M:SuperMap.Chart.S57FeatureRelationships.CreateCollection(System.String,SuperMap.Chart.S57FeatureObjectIDInfo[])">
  1266. <summary>
  1267. Creates a collection feature according to the FOID of the specified feature object.
  1268. </summary>
  1269. <param name="acronym">The feature acronym of the specified collection feature is used for determining the type of the built collection feature, which only can be "C_AGGR" or "C_ASSO".</param>
  1270. <param name="referencedFOIDInfos">The feature identifier information array of the feature object referenced by the specified collection feature to be created.</param>
  1271. <returns>The FOID of the new collection feature.</returns>
  1272. </member>
  1273. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetCollectionReferenceFeatures(System.String)">
  1274. <summary>
  1275. Gets the FOID of the feature object referenced by the specified collection feature.
  1276. </summary>
  1277. <param name="collectionFOID">The specified FOID of the specified collection feature.</param>
  1278. <returns>The feature identifier information array of the feature object referenced by the specified collection feature.</returns>
  1279. </member>
  1280. <member name="M:SuperMap.Chart.S57FeatureRelationships.SetCollectionReferenceFeatures(SuperMap.Chart.S57FeatureObjectIDInfo,SuperMap.Chart.S57FeatureObjectIDInfo[])">
  1281. <summary>
  1282. Resets the collection feature object, i.e., resets the referenced feature object of the specified collection feature object.
  1283. </summary>
  1284. <param name="collectionFOIDInfo">The FOID of the specified collection features to be reset.</param>
  1285. <param name="referencedFOIDInfos">The specified feature identifier information array of the specified referenced feature.</param>
  1286. <returns>True if successful; otherwise, false.</returns>
  1287. </member>
  1288. <member name="M:SuperMap.Chart.S57FeatureRelationships.RemoveCollection(System.String,System.Boolean)">
  1289. <summary>
  1290. Deletes the association relationship between the collection feature and its referenced feature, or specifies whether to delete the collection feature.
  1291. </summary>
  1292. <param name="collectionFOID">The specified collection feature whose association relationship will be deleted.</param>
  1293. <param name="isRemoveCollectionObject">Specifies whether to delete the collection feature. If true, then deletes the association relationship between the collection feature and its referenced feature, and deletes the collection feature (one record) from the collection feature dataset (a tabular table).</param>
  1294. <returns>A boolean value denotes whether deleting the collection feature and its referenced relationship are successful or not. True if successful; otherwise, false.</returns>
  1295. </member>
  1296. <member name="M:SuperMap.Chart.S57FeatureRelationships.SetS57AttributeValue(SuperMap.Chart.S57FeatureObjectIDInfo,System.String,System.Object)">
  1297. <summary>
  1298. Sets the value of the attribute field specified by the collection feature.
  1299. </summary>
  1300. <param name="collectionFOIDInfo">The FOID of the specified collection feature.</param>
  1301. <param name="attributeAcronym">The attribute acronym of the specified collection feature.</param>
  1302. <param name="value">The specified attribute value to be set up.</param>
  1303. <returns>True if successful; otherwise, false.</returns>
  1304. </member>
  1305. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetS57AttributeValue(SuperMap.Chart.S57FeatureObjectIDInfo,System.String)">
  1306. <summary>
  1307. Gets the value of the specified property of the collection feature.
  1308. </summary>
  1309. <param name="collectionFOIDInfo">The FOID of the specified collection feature.</param>
  1310. <param name="attributeAcronym">The acronym of the specified attribute to get.</param>
  1311. <returns>The value of the specified attribute.</returns>
  1312. </member>
  1313. <member name="M:SuperMap.Chart.S57FeatureRelationships.GetS57AttributeValues(SuperMap.Chart.S57FeatureObjectIDInfo)">
  1314. <summary>
  1315. Gets the attribute information of the collection feature.
  1316. </summary>
  1317. <param name="collectionFOIDInfo">The FOID of the specified collection feature.</param>
  1318. <returns>The property information array of the collection feature.</returns>
  1319. </member>
  1320. <member name="T:SuperMap.Chart.FeatureTypeChart">
  1321. <summary>
  1322. This class defines the type constant of the features.
  1323. </summary>
  1324. </member>
  1325. <member name="F:SuperMap.Chart.FeatureTypeChart.None">
  1326. <summary>
  1327. The unknown feature object.
  1328. </summary>
  1329. </member>
  1330. <member name="F:SuperMap.Chart.FeatureTypeChart.Geo">
  1331. <summary>
  1332. The geographic feature object ('G'), indicating that the description of the objective world is contained.
  1333. </summary>
  1334. </member>
  1335. <member name="F:SuperMap.Chart.FeatureTypeChart.Meta">
  1336. <summary>
  1337. The mate-feature object ('M'), indicating that other feature information (such as the editing scale, vertical datum) is contained.
  1338. </summary>
  1339. </member>
  1340. <member name="F:SuperMap.Chart.FeatureTypeChart.Collection">
  1341. <summary>
  1342. The collection feature object ('C'), indicating that the relationship between features is described.
  1343. </summary>
  1344. </member>
  1345. <member name="F:SuperMap.Chart.FeatureTypeChart.Cartographic">
  1346. <summary>
  1347. The cartographic object ('$'), indicating that the map display information of the objective world entity is contained.
  1348. </summary>
  1349. </member>
  1350. <member name="T:SuperMap.Chart.Conversion.FileTypeChart">
  1351. <summary>
  1352. This class defines the type constant of the chart conversion file.
  1353. </summary>
  1354. </member>
  1355. <member name="F:SuperMap.Chart.Conversion.FileTypeChart.None">
  1356. <summary>
  1357. Unknow data format.
  1358. </summary>
  1359. </member>
  1360. <member name="F:SuperMap.Chart.Conversion.FileTypeChart.S57">
  1361. <summary>
  1362. The S-57 chart format, 000 file.
  1363. </summary>
  1364. </member>
  1365. <member name="T:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs">
  1366. <summary>
  1367. The ImportChartSteppedEventArgs class.
  1368. </summary>
  1369. </member>
  1370. <member name="M:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.#ctor(System.String,System.String,System.Int32,System.Int32,SuperMap.Chart.Conversion.ImportSettingChart,System.Int32,System.Boolean)">
  1371. <summary>
  1372. Initializes a new instance of the ImportSteppedEventArgs class with the specified parameters.
  1373. </summary>
  1374. <param name="title">The title of the current progress bar.</param>
  1375. <param name="message">The progress information of the current progress bar.</param>
  1376. <param name="percent">Gets the total percent of the current operation.</param>
  1377. <param name="subPercent">Gets the percent of the current sub item.</param>
  1378. <param name="currentTask">The current item information.</param>
  1379. <param name="count">Gets the count of the items of the tasks.</param>
  1380. <param name="cancel">Whether to cancel all the import tasks.</param>
  1381. </member>
  1382. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.Title">
  1383. <summary>
  1384. Gets the title of the current progress bar.
  1385. </summary>
  1386. </member>
  1387. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.Message">
  1388. <summary>
  1389. Gets the progress information of the current progress bar.
  1390. </summary>
  1391. </member>
  1392. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.TotalPercent">
  1393. <summary>
  1394. Gets the completion percent of the current operation.
  1395. </summary>
  1396. </member>
  1397. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.SubPercent">
  1398. <summary>
  1399. Gets the percent of the current sub item.
  1400. </summary>
  1401. </member>
  1402. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.CurrentTask">
  1403. <summary>
  1404. Gets the information of the item of the current task and returns the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> object.
  1405. </summary>
  1406. </member>
  1407. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.Count">
  1408. <summary>
  1409. Gets the count of the items of the tasks.
  1410. </summary>
  1411. </member>
  1412. <member name="P:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs.Cancel">
  1413. <summary>
  1414. Gets or sets whether to cancel all the tasks.
  1415. </summary>
  1416. <value>Returns true if successful, otherwise false. </value>
  1417. </member>
  1418. <member name="T:SuperMap.Chart.Conversion.ImportChartSteppedEventHandler">
  1419. <summary>
  1420. Represents the method that handles a Stepped event.
  1421. </summary>
  1422. <param name="sender">The specified source event.</param>
  1423. <param name="e">The <see cref="T:SuperMap.Chart.Conversion.ImportChartSteppedEventArgs">ImportChartSteppedEventArgs</see> class.</param>
  1424. </member>
  1425. <member name="T:SuperMap.Chart.Conversion.ImportResultChart">
  1426. <summary>
  1427. The ExportResult class, which provides the two methods such as <see cref="P:SuperMap.Chart.Conversion.ImportResultChart.SucceedSettings">SucceedSettings</see>, <see cref="P:SuperMap.Chart.Conversion.ImportResultChart.FailedSettings">FailedSettings</see> to get the successful and the failed import settings.
  1428. </summary>
  1429. </member>
  1430. <member name="M:SuperMap.Chart.Conversion.ImportResultChart.Finalize">
  1431. <summary>
  1432. Releases unmanaged resources and performs other cleanup operations before the Geometry is reclaimed by garbage collection.
  1433. </summary>
  1434. </member>
  1435. <member name="M:SuperMap.Chart.Conversion.ImportResultChart.Dispose">
  1436. <summary>
  1437. Releases all resources that the objects occupy.
  1438. </summary>
  1439. </member>
  1440. <member name="P:SuperMap.Chart.Conversion.ImportResultChart.SucceedSettings">
  1441. <summary>
  1442. Gets the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> settings of the successful tasks.
  1443. </summary>
  1444. </member>
  1445. <member name="P:SuperMap.Chart.Conversion.ImportResultChart.FailedSettings">
  1446. <summary>
  1447. Gets the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> settings of the failed tasks.The user can get whether the count of the failed tasks is zero to determine whether imported successfully.
  1448. </summary>
  1449. </member>
  1450. <member name="T:SuperMap.Chart.Conversion.ImportSettingChart">
  1451. <summary>
  1452. The ImportSettingChart class. This class is the base class of all the import setting classes. It provides the common methods and properties.
  1453. </summary>
  1454. </member>
  1455. <member name="M:SuperMap.Chart.Conversion.ImportSettingChart.#ctor">
  1456. <summary>
  1457. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see>.
  1458. </summary>
  1459. </member>
  1460. <member name="M:SuperMap.Chart.Conversion.ImportSettingChart.Finalize">
  1461. <summary>
  1462. Frees the resources of the non-managed object before it is reclaimed by the garbage collector.
  1463. </summary>
  1464. </member>
  1465. <member name="M:SuperMap.Chart.Conversion.ImportSettingChart.Dispose">
  1466. <summary>
  1467. Releases all resources that the objects occupy.
  1468. </summary>
  1469. </member>
  1470. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.SourceFilePath">
  1471. <summary>
  1472. Gets or sets the path of the chart file to be imported.
  1473. </summary>
  1474. </member>
  1475. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.SourceFileType">
  1476. <summary>
  1477. Gets the type of the chart data to be imported.
  1478. </summary>
  1479. <value>The default value is <see cref="F:SuperMap.Chart.Conversion.FileTypeChart.None">FileTypeChart.None</see>.</value>
  1480. </member>
  1481. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.TargetEncodeType">
  1482. <summary>
  1483. Gets or sets the code type of the dataset to be created.
  1484. </summary>
  1485. <value>The default value is the code type in the source data.</value>
  1486. </member>
  1487. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.TargetDatasourceConnectionInfo">
  1488. <summary>
  1489. Gets or sets the target datasource connected information. If there is no corresponding datasource, create a new datasource according to the connected information.
  1490. </summary>
  1491. <value>The default value is null.</value>
  1492. </member>
  1493. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.TargetDatasource">
  1494. <summary>
  1495. Gets or sets the target datasource object to be imported.
  1496. </summary>
  1497. <value>The default value is null.</value>
  1498. </member>
  1499. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.ConvertToMercator">
  1500. <summary>
  1501. Sets or Gets whether to convert the imported data into the Mercator coordinate system.
  1502. </summary>
  1503. <value>The default is false.</value>
  1504. </member>
  1505. <member name="P:SuperMap.Chart.Conversion.ImportSettingChart.TargetDatasetGroup">
  1506. <summary>
  1507. Gets or sets the grouping information of the target dataset.
  1508. </summary>
  1509. </member>
  1510. <member name="T:SuperMap.Chart.Conversion.ImportSettingCharts">
  1511. <summary>
  1512. The collection class of import setting information.This class is the collection class of ImportSettingChart object.
  1513. </summary>
  1514. </member>
  1515. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.#ctor">
  1516. <summary>
  1517. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> class.
  1518. </summary>
  1519. </member>
  1520. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.Add(SuperMap.Chart.Conversion.ImportSettingChart)">
  1521. <summary>
  1522. Adds a specified <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> to the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> object.
  1523. </summary>
  1524. <param name="importSettingChart">The specified ImportSettingChart object.</param>
  1525. <returns>The index value corresponding to the newly added ImportSettingChart object.</returns>
  1526. </member>
  1527. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.Insert(System.Int32,SuperMap.Chart.Conversion.ImportSettingChart)">
  1528. <summary>
  1529. Inserts a specified <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> object to the specified index of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts"> ImportSettingCharts</see> object.
  1530. </summary>
  1531. <param name="index">The specified index.</param>
  1532. <param name="importSettingChart">The specified ImportSettingChart object.</param>
  1533. <returns>Returns true if successful, otherwise false.</returns>
  1534. </member>
  1535. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.Remove(System.Int32)">
  1536. <summary>
  1537. Removes the items from the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> object with the specified index.
  1538. </summary>
  1539. <param name="index">The specified index value.</param>
  1540. <returns>Returns true if successful, otherwise false.</returns>
  1541. </member>
  1542. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.Clear">
  1543. <summary>
  1544. Clears all the ImportSettingChart objects from the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> object.
  1545. </summary>
  1546. </member>
  1547. <member name="M:SuperMap.Chart.Conversion.ImportSettingCharts.GetEnumerator">
  1548. <summary>
  1549. Gets the IEnumerator object.
  1550. </summary>
  1551. <returns>return the enumerator of the dataset set</returns>
  1552. </member>
  1553. <member name="P:SuperMap.Chart.Conversion.ImportSettingCharts.Count">
  1554. <summary>
  1555. Gets the total counts of the features of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> object.
  1556. </summary>
  1557. <returns>Gets the count of the elements in the specified ImportSettings.</returns>
  1558. <value>The default value is 0.</value>
  1559. </member>
  1560. <member name="P:SuperMap.Chart.Conversion.ImportSettingCharts.Item(System.Int32)">
  1561. <summary>
  1562. Gets the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> object with specified index in the <see cref="T:SuperMap.Chart.Conversion.ImportSettingCharts">ImportSettingCharts</see> object.
  1563. </summary>
  1564. <param name="index">The specified index value.</param>
  1565. <returns>The specified index corresponding to the ImportSettingChart object.</returns>
  1566. </member>
  1567. <member name="T:SuperMap.Chart.Conversion.ImportSettingChartS57">
  1568. <summary>
  1569. The ImportSettingChartS57 class. This class is inherited from the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChart">ImportSettingChart</see> class.
  1570. </summary>
  1571. </member>
  1572. <member name="M:SuperMap.Chart.Conversion.ImportSettingChartS57.#ctor">
  1573. <summary>
  1574. Creates a new instance of the <see cref="T:SuperMap.Chart.Conversion.ImportSettingChartS57">ImportSettingChartS57</see>.
  1575. </summary>
  1576. </member>
  1577. <member name="P:SuperMap.Chart.Conversion.ImportSettingChartS57.SpatialIndex">
  1578. <summary>
  1579. Gets or sets the information of the spatial index.
  1580. </summary>
  1581. <value>The default value is null, indicating that the space index information is null.</value>
  1582. </member>
  1583. <member name="P:SuperMap.Chart.Conversion.ImportSettingChartS57.IsImportUpdates">
  1584. <summary>
  1585. Gets or sets whether to update the data (001, 002, ...) when the 000 file is imported.
  1586. </summary>
  1587. <value>The default value is true representing that the data will be updated.</value>
  1588. </member>
  1589. <member name="T:SuperMap.Chart.S57CellInformation">
  1590. <summary>
  1591. The S57CellInformation class is used for getting and setting the information of a S-57 electronic chart, including AgencyCode, CellName, IntendedUsage, EditionVersion, IssueDate, UpdateVersion, UpdateDate, DataSetIdentificationComment, CompilationScale, VerticalDatum, SoundingDatum, CoordinateFactor, DataSetParameterComment, ATTFLexicalLevel and NATFLexicalLevel.
  1592. </summary>
  1593. </member>
  1594. <member name="M:SuperMap.Chart.S57CellInformation.#ctor">
  1595. <summary>
  1596. Construct a new S57CellInformation object.
  1597. </summary>
  1598. </member>
  1599. <member name="M:SuperMap.Chart.S57CellInformation.Dispose">
  1600. <summary>
  1601. Releases all resources that the object occupies.
  1602. </summary>
  1603. </member>
  1604. <member name="P:SuperMap.Chart.S57CellInformation.AgencyCode">
  1605. <summary>
  1606. Gets or sets the agency code, corresponding to DSID-AGEN.
  1607. </summary>
  1608. <value>The default value is -1.</value>
  1609. </member>
  1610. <member name="P:SuperMap.Chart.S57CellInformation.ATTFLexicalLevel">
  1611. <summary>
  1612. Gets or sets the vocabulary level of ATTF, corresponding to DSSI-AALL.
  1613. </summary>
  1614. <value>Default is S57LexicalLevel.Level0.</value>
  1615. </member>
  1616. <member name="P:SuperMap.Chart.S57CellInformation.CellName">
  1617. <summary>
  1618. Gets or sets the name of the dataset, corresponding to DSID-DSNM.
  1619. </summary>
  1620. <value>The default is a null string.</value>
  1621. </member>
  1622. <member name="P:SuperMap.Chart.S57CellInformation.CompilationScale">
  1623. <summary>
  1624. Gets or sets the data editing scale, corresponding to DSPM-CSCL.
  1625. </summary>
  1626. <value>The default value is -1.</value>
  1627. </member>
  1628. <member name="P:SuperMap.Chart.S57CellInformation.CoordinateFactor">
  1629. <summary>
  1630. Gets or sets the zoom in coefficient of the coordinates, corresponding to DSPM-COMF.
  1631. </summary>
  1632. <value>The default value is -1.</value>
  1633. </member>
  1634. <member name="P:SuperMap.Chart.S57CellInformation.DataSetIdentificationComment">
  1635. <summary>
  1636. Gets or sets the annotation information of the DSID field, corresponding to DSID-COMT.
  1637. </summary>
  1638. <value>The default is a null string.</value>
  1639. </member>
  1640. <member name="P:SuperMap.Chart.S57CellInformation.DataSetParameterComment">
  1641. <summary>
  1642. Gets or sets the annotation information of the DSPM field, corresponding to DSPM-COMT.
  1643. </summary>
  1644. <value>The default is a null string.</value>
  1645. </member>
  1646. <member name="P:SuperMap.Chart.S57CellInformation.EditionVersion">
  1647. <summary>
  1648. Gets or sets the version number, corresponding to DSID-EDTN.
  1649. </summary>
  1650. <value>The default value is 1.</value>
  1651. </member>
  1652. <member name="P:SuperMap.Chart.S57CellInformation.IntendedUsage">
  1653. <summary>
  1654. Gets or sets the nautical purpose, corresponding to DSID-INTU.
  1655. </summary>
  1656. <value>Default is S57IntendedUsage.OverView.</value>
  1657. </member>
  1658. <member name="P:SuperMap.Chart.S57CellInformation.IssueDate">
  1659. <summary>
  1660. Gets or sets the issure date, corresponding to DSID-ISDT.
  1661. </summary>
  1662. <value>The default value is 20130101.</value>
  1663. </member>
  1664. <member name="P:SuperMap.Chart.S57CellInformation.NATFLexicalLevel">
  1665. <summary>
  1666. Gets or sets the vocabulary level of NATF, corresponding to DSSI-NALL.
  1667. </summary>
  1668. <value>Default is S57LexicalLevel.Level0.</value>
  1669. </member>
  1670. <member name="P:SuperMap.Chart.S57CellInformation.SoundingDatum">
  1671. <summary>
  1672. Gets or sets the sounding datum, corresponding to DSPM-SDAT.
  1673. </summary>
  1674. <value>The default value is -1.</value>
  1675. </member>
  1676. <member name="P:SuperMap.Chart.S57CellInformation.UpdateDate">
  1677. <summary>
  1678. Gets or sets the update date, corresponding to DSID-UADT.
  1679. </summary>
  1680. <value>The default value is 20130101.</value>
  1681. </member>
  1682. <member name="P:SuperMap.Chart.S57CellInformation.UpdateVersion">
  1683. <summary>
  1684. Gets or sets the update version, corresponding to DSID-UPDN.
  1685. </summary>
  1686. <value>The default value is 0.</value>
  1687. </member>
  1688. <member name="P:SuperMap.Chart.S57CellInformation.VerticalDatum">
  1689. <summary>
  1690. Gets or sets the vertical datum, corresponding to DSPM-VDAT.
  1691. </summary>
  1692. <value>The default value is -1.</value>
  1693. </member>
  1694. <member name="T:SuperMap.Chart.S57DatasetExtInfo">
  1695. <summary>
  1696. The S57DatasetExtInfo class. The extension information can be obtained by this class, such as dataset type, the acronym, the code and the dataset related to the attribute dataset, and so on.
  1697. </summary>
  1698. </member>
  1699. <member name="M:SuperMap.Chart.S57DatasetExtInfo.#ctor(SuperMap.Data.Dataset)">
  1700. <summary>
  1701. Creates a new instance of the S57DatasetExtInfo object.
  1702. </summary>
  1703. <param name="dataset">The specified Dataset object.</param>
  1704. </member>
  1705. <member name="M:SuperMap.Chart.S57DatasetExtInfo.Dispose">
  1706. <summary>
  1707. Releases all resources used by the S57DatasetExtInfo.
  1708. </summary>
  1709. </member>
  1710. <member name="M:SuperMap.Chart.S57DatasetExtInfo.Finalize">
  1711. <summary>
  1712. Frees the resources of the current managed object before it is reclaimed by the garbage collector.
  1713. </summary>
  1714. </member>
  1715. <member name="M:SuperMap.Chart.S57DatasetExtInfo.Update">
  1716. <summary>
  1717. Writes the extension information into the dataset.
  1718. </summary>
  1719. <returns>Returns true if successful; otherwise, false.</returns>
  1720. </member>
  1721. <member name="M:SuperMap.Chart.S57DatasetExtInfo.IsChartDataset">
  1722. <summary>
  1723. Determines whether to be the chart dataset by the extension information.
  1724. </summary>
  1725. <returns>A boolean value means whether to be the chart dataset, returns true if yes, or false otherwise.</returns>
  1726. </member>
  1727. <member name="P:SuperMap.Chart.S57DatasetExtInfo.Dataset">
  1728. <summary>
  1729. Gets or sets the dataset.
  1730. </summary>
  1731. </member>
  1732. <member name="P:SuperMap.Chart.S57DatasetExtInfo.S57DatasetType">
  1733. <summary>
  1734. Gets or sets the type of the S-57 dataset.
  1735. </summary>
  1736. </member>
  1737. <member name="P:SuperMap.Chart.S57DatasetExtInfo.FeatureAcronym">
  1738. <summary>
  1739. Gets or sets the S-57 feature acronym. Only chart dataset with the <see cref="F:SuperMap.Chart.S57DatasetType.S57FEATURE">S57DatasetType.S57FEATURE</see> type is supported.
  1740. </summary>
  1741. </member>
  1742. <member name="P:SuperMap.Chart.S57DatasetExtInfo.FeatureCode">
  1743. <summary>
  1744. Gets or sets the S-57 feature code. Only chart dataset with the <see cref="F:SuperMap.Chart.S57DatasetType.S57FEATURE">S57DatasetType.S57FEATURE</see> type is supported.
  1745. </summary>
  1746. </member>
  1747. <member name="T:SuperMap.Chart.S57DatasetGroup">
  1748. <summary>
  1749. The S-57 chart dataset grouping class.
  1750. </summary>
  1751. </member>
  1752. <member name="P:SuperMap.Chart.S57DatasetGroup.PrjCoordSys">
  1753. <summary>
  1754. Gets the coordinate system of the chart corresponding to the current S-57 chart dataset group.
  1755. </summary>
  1756. </member>
  1757. <member name="T:SuperMap.Chart.S57DatasetGroupExtInfo">
  1758. <summary>
  1759. The S57DatasetGroupExtInfo class. This class could be used get the grouped extension of the dataset, which includes the filename, the default scale, the spatial isolated node dataset, the spatial linked node dataset and so on.
  1760. </summary>
  1761. </member>
  1762. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.#ctor(SuperMap.Data.DatasetGroup)">
  1763. <summary>
  1764. Creates a new S57DatasetGroupExtInfo object according to the specified arguments.
  1765. </summary>
  1766. <param name="datasetGroup">The specified DatasetGroup object.</param>
  1767. </member>
  1768. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.Dispose">
  1769. <summary>
  1770. Releases all resources used by the S57DatasetGroupExtInfo.
  1771. </summary>
  1772. </member>
  1773. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.Finalize">
  1774. <summary>
  1775. Frees the resources of the current managed object before it is reclaimed by the garbage collector.
  1776. </summary>
  1777. </member>
  1778. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.Update">
  1779. <summary>
  1780. Writes the extension information to the dataset group. If this interface isn't called, the information cannot be written to the dataset group.
  1781. </summary>
  1782. <returns>Returns true if successful, otherwise returns false</returns>
  1783. </member>
  1784. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.IsChartDatasetGroup">
  1785. <summary>
  1786. Determines whether it is the chart dataset group by the extension information.
  1787. </summary>
  1788. <returns>A Boolean value indicates whether to be the chart dataset group, true means yes, or false otherwise.</returns>
  1789. </member>
  1790. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.GetFeatureDataset(System.Int32,SuperMap.Data.DatasetType)">
  1791. <summary>
  1792. Gets the feature dataset according to the feature code value and the dataset type (the geometry type). The dataset type contains <see cref="F:SuperMap.Data.DatasetType.Point">Point</see>, <see cref="F:SuperMap.Data.DatasetType.Line"> Line</see>, <see cref="F:SuperMap.Data.DatasetType.Region">Region</see>, and <see cref="F:SuperMap.Data.DatasetType.Tabular">Tabular</see>.
  1793. </summary>
  1794. <param name="code">The specified feature code.</param>
  1795. <param name="eType">The specified type of dataset.</param>
  1796. <returns>The feature dataset.</returns>
  1797. </member>
  1798. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.SetFeatureDataset(SuperMap.Data.Dataset)">
  1799. <summary>
  1800. Sets the feature dataset.
  1801. <para>The dataset requires that the extension information of the dataset has been set. If the current dataset group already contains the dataset with the same type, then the set fails. Because the feature with the same type has multiple geometry types. Therefore, a kind of features in the chart dataset group contains the dataset with several types, and every type is unique.</para></summary>
  1802. <param name="dataset">
  1803. </param>
  1804. <returns>Returns true if successful,otherwise returns false.</returns>
  1805. </member>
  1806. <member name="M:SuperMap.Chart.S57DatasetGroupExtInfo.DeleteFeature(System.Int32,SuperMap.Data.DatasetType)">
  1807. <summary>
  1808. Deletes the feature dataset with the specified code and the type (the geometry type).
  1809. </summary>
  1810. <param name="code">This specified feature code.</param>
  1811. <param name="eType">The specified type of dataset.</param>
  1812. </member>
  1813. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.DatasetGroup">
  1814. <summary>
  1815. Gets or sets the DatasetGroup.
  1816. </summary>
  1817. </member>
  1818. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.ChartCellName">
  1819. <summary>
  1820. Gets or sets the filename of the chart. It's saved in the DSNM field.
  1821. </summary>
  1822. </member>
  1823. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.ChartScale">
  1824. <summary>
  1825. Gets or sets the scale of the layer.
  1826. </summary>
  1827. </member>
  1828. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.PrjCoordSys">
  1829. <summary>
  1830. Gets or sets the chart coordinates. Its supports WGS1984 and World Mercator.
  1831. </summary>
  1832. </member>
  1833. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.DSIDDataset">
  1834. <summary>
  1835. Gets or sets the DSID dataset. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57DSID">S57DSID</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1836. </summary>
  1837. </member>
  1838. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.VectorIsolatedDataset">
  1839. <summary>
  1840. Gets or sets the spatial isolated node dataset. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57VI">S57VI</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1841. </summary>
  1842. </member>
  1843. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.VectorConnectedDataset">
  1844. <summary>
  1845. Gets or sets the spatial linked node dataset. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57VC">S57VI</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1846. </summary>
  1847. </member>
  1848. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.VectorEdgeDataset">
  1849. <summary>
  1850. Gets or sets the spatial boundary line dataset. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57VE">S57VE</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1851. </summary>
  1852. </member>
  1853. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.FeatureToEdgeDataset">
  1854. <summary>
  1855. Gets or sets the dataset which stores the topology relationship from the feature to the spatial boundary. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57FVE">S57FVE</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1856. </summary>
  1857. </member>
  1858. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.FeatureToPointDataset">
  1859. <summary>
  1860. Gets or sets the dataset which stores the topology relationship from the feature to the spatial points (including the isolated nodes and the link nodes). It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57FVP">S57FVP</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1861. </summary>
  1862. </member>
  1863. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.FeatureRelationShipDataset">
  1864. <summary>
  1865. Gets or sets the dataset which stores the relationships between the features. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57RS">S57RS</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1866. </summary>
  1867. </member>
  1868. <member name="P:SuperMap.Chart.S57DatasetGroupExtInfo.FeatureDatasets">
  1869. <summary>
  1870. Gets or sets all the feature datasets in the current map sheet. It supports the <see cref="F:SuperMap.Chart.S57DatasetType.S57FEATURE">S57FEATURE</see> type in the <see cref="T:SuperMap.Chart.S57DatasetType">S57DatasetType</see>.
  1871. </summary>
  1872. </member>
  1873. <member name="T:SuperMap.Chart.S57DatasetType">
  1874. <summary>
  1875. This class defines the type constant of the chart dataset to be imported.
  1876. </summary>
  1877. </member>
  1878. <member name="F:SuperMap.Chart.S57DatasetType.NONE">
  1879. <summary>
  1880. Non-chart dataset.
  1881. </summary>
  1882. </member>
  1883. <member name="F:SuperMap.Chart.S57DatasetType.S57FEATURE">
  1884. <summary>
  1885. The feature dataset.
  1886. </summary>
  1887. </member>
  1888. <member name="F:SuperMap.Chart.S57DatasetType.S57DSID">
  1889. <summary>
  1890. The dataset that stores the DSID and DSPM field in the S-57 file.
  1891. </summary>
  1892. </member>
  1893. <member name="F:SuperMap.Chart.S57DatasetType.S57VI">
  1894. <summary>
  1895. The dataset that stores the spatial isolated points.
  1896. </summary>
  1897. </member>
  1898. <member name="F:SuperMap.Chart.S57DatasetType.S57VC">
  1899. <summary>
  1900. The dataset that stores the spatial link node.
  1901. </summary>
  1902. </member>
  1903. <member name="F:SuperMap.Chart.S57DatasetType.S57VE">
  1904. <summary>
  1905. The dataset that stores the spatial boundaries.
  1906. </summary>
  1907. </member>
  1908. <member name="F:SuperMap.Chart.S57DatasetType.S57FVE">
  1909. <summary>
  1910. The dataset that stores the spatial topology relationship from the feature object to the spatial boundary object.
  1911. </summary>
  1912. </member>
  1913. <member name="F:SuperMap.Chart.S57DatasetType.S57FVP">
  1914. <summary>
  1915. The dataset that stores the spatial topology relationship from the feature object to the spatial point (isolated point and link node).
  1916. </summary>
  1917. </member>
  1918. <member name="F:SuperMap.Chart.S57DatasetType.S57RS">
  1919. <summary>
  1920. The dataset that stores the connection relationships between feature objects.
  1921. </summary>
  1922. </member>
  1923. <member name="T:SuperMap.Chart.AttributeSpec">
  1924. <summary>
  1925. The AttributeSpecs class. It’s used to provide the attribute fields of the features in the chart. For example, the ENC 3.1 version.
  1926. </summary>
  1927. </member>
  1928. <member name="P:SuperMap.Chart.AttributeSpec.Code">
  1929. <summary>
  1930. Gets the attribute field code.
  1931. </summary>
  1932. <value>The default value is 0.</value>
  1933. </member>
  1934. <member name="P:SuperMap.Chart.AttributeSpec.Required">
  1935. <summary>
  1936. Gets whether this attribute is required for the feature.
  1937. </summary>
  1938. </member>
  1939. <member name="T:SuperMap.Chart.FeatureInfoSpec">
  1940. <summary>
  1941. The FeatureInfoSpecs class. It's used to describe the basic information of the specification feature of the products, which includes the name, type and the related attributes. For example, the ENC 3.1 version.
  1942. </summary>
  1943. </member>
  1944. <member name="P:SuperMap.Chart.FeatureInfoSpec.Acronym">
  1945. <summary>
  1946. Gets the acronym of the feature.
  1947. </summary>
  1948. <value>The default value is String.Empty.</value>
  1949. </member>
  1950. <member name="P:SuperMap.Chart.FeatureInfoSpec.Name">
  1951. <summary>
  1952. Gets the name of the object.
  1953. </summary>
  1954. <value>The default value is String.Empty.</value>
  1955. </member>
  1956. <member name="P:SuperMap.Chart.FeatureInfoSpec.LocalName">
  1957. <summary>
  1958. Gets the localization name of the object.
  1959. </summary>
  1960. <value>The default value is String.Empty.</value>
  1961. </member>
  1962. <member name="P:SuperMap.Chart.FeatureInfoSpec.Code">
  1963. <summary>
  1964. Gets the code of the feature.
  1965. </summary>
  1966. <value>The default value is 0.</value>
  1967. </member>
  1968. <member name="P:SuperMap.Chart.FeatureInfoSpec.Primitive">
  1969. <summary>
  1970. Gets the object type which could be applied by the feature.
  1971. </summary>
  1972. <value>The default value is String.Empty.</value>
  1973. </member>
  1974. <member name="P:SuperMap.Chart.FeatureInfoSpec.AttributeFields">
  1975. <summary>
  1976. Gets the attribute fields of the feature.
  1977. </summary>
  1978. </member>
  1979. <member name="T:SuperMap.Chart.S57EditDatasetGroup">
  1980. <summary>
  1981. Class of dataset group for editable S-57 chart data. This class is used to edit and query the chart data. It can create, delete feature datasets, append records to the feature dataset, set basic information of nautical chart, set chain node topological relations for the chart, and check S-58 data.
  1982. </summary>
  1983. </member>
  1984. <member name="M:SuperMap.Chart.S57EditDatasetGroup.CreateFeatureDataset(System.Int32,SuperMap.Data.DatasetType)">
  1985. <summary>
  1986. Creates a new feature dataset according to the specified feature code and the dataset type, and adds this new feature dataset to the current editable S-57 chart dataset group. The creation will be failed if the corresponding feature dataset exists.
  1987. </summary>
  1988. <param name="code">This specified feature code.</param>
  1989. <param name="datasetType">The specified dataset type. Point, line, region and tabular are supported.</param>
  1990. <returns>The new feature dataset. Return null if the creation is failed.</returns>
  1991. <overloads>
  1992. <summary>
  1993. Creates a new feature dataset according to the specified arguments, and adds this new feature dataset to the current editable S-57 chart dataset group.
  1994. </summary>
  1995. </overloads>
  1996. </member>
  1997. <member name="M:SuperMap.Chart.S57EditDatasetGroup.CreateFeatureDataset(System.String,SuperMap.Data.DatasetType)">
  1998. <summary>
  1999. Creates a new feature dataset according to the specified feature acronym and the dataset type, and adds this new feature dataset to the current editable S-57 chart dataset group. The creation will be failed if the corresponding feature dataset exists.
  2000. </summary>
  2001. <param name="acronym">The specified feature acronym.</param>
  2002. <param name="datasetType">The specified dataset type. Point, line, region and tabular are supported.</param>
  2003. <returns>The new feature dataset. Return null if the creation is failed.</returns>
  2004. </member>
  2005. <member name="M:SuperMap.Chart.S57EditDatasetGroup.AppendFeatureDataset(System.Int32,SuperMap.Data.Recordset,System.String[],System.String[],System.Boolean)">
  2006. <summary>
  2007. Appends recordset to the feature dataset with the given feature code and the dataset type from the current editable S-57 chart dataset group.
  2008. </summary>
  2009. <param name="code">This specified feature code.</param>
  2010. <param name="recordset">The specified feature dataset to be appended.</param>
  2011. <param name="sourceFields">The source field array, corresponding to the field in the source recordset to be appended.</param>
  2012. <param name="targetFields">The specified target field array, corresponding to the fields in the new or existed feature dataset.</param>
  2013. <param name="isCreateNewDataset">Whether to create a new feature dataset or not when the feature dataset doesn't exist. The new dataset will be created and the recordset appended if it is true; otherwise, false. Note, the recordset will be always appended to the dataset if the feature dataset exists, regardless of true or false.</param>
  2014. <returns>The feature dataset after being appended successfully.</returns>
  2015. <overloads>
  2016. <summary>
  2017. Appends the recordset to the feature dataset of the current editable S-57 chart dataset group according to the given aurgments.
  2018. </summary>
  2019. </overloads>
  2020. </member>
  2021. <member name="M:SuperMap.Chart.S57EditDatasetGroup.AppendFeatureDataset(System.String,SuperMap.Data.Recordset,System.String[],System.String[],System.Boolean)">
  2022. <summary>
  2023. Appends recordset to the feature dataset with the given feature acronym and the dataset type from the current editable S-57 chart dataset group.
  2024. </summary>
  2025. <param name="acronym">The specified feature acronym.</param>
  2026. <param name="recordset">The specified feature dataset to be appended.</param>
  2027. <param name="sourceFields">The source field array, corresponding to the field in the source recordset to be appended.</param>
  2028. <param name="targetFields">The specified target field array, corresponding to the fields in the new or existed feature dataset.</param>
  2029. <param name="isCreateNewDataset">Whether to create a new feature dataset or not when the feature dataset doesn't exist. The new dataset will be created and the recordset appended if it is true; otherwise, false. Note, the recordset will be always appended to the dataset if the feature dataset exists, regardless of true or false.</param>
  2030. <returns>The feature dataset after being appended successfully.</returns>
  2031. </member>
  2032. <member name="M:SuperMap.Chart.S57EditDatasetGroup.RemoveFeatureDataset(System.Int32,SuperMap.Data.DatasetType)">
  2033. <summary>
  2034. Deletes the feature dataset with the given feature code and the dataset type from the current editable S-57 chart dataset group.
  2035. </summary>
  2036. <param name="code">This specified feature code.</param>
  2037. <param name="datasetType">The specified dataset type. Point, line, region and tabular are supported.</param>
  2038. <returns>Returns true if successful; otherwise, false.</returns>
  2039. <overloads>
  2040. <summary>
  2041. Deletes a feature dataset from the current editable S-57 chart dataset group according to the given argument.
  2042. </summary>
  2043. </overloads>
  2044. </member>
  2045. <member name="M:SuperMap.Chart.S57EditDatasetGroup.RemoveFeatureDataset(System.String,SuperMap.Data.DatasetType)">
  2046. <summary>
  2047. Deletes the feature dataset with the given feature acronym and the dataset type from the current editable S-57 chart dataset group.
  2048. </summary>
  2049. <param name="acronym">The specified feature acronym.</param>
  2050. <param name="datasetType">The specified dataset type. Point, line, region and tabular are supported.</param>
  2051. <returns>Returns true if successful; otherwise, false.</returns>
  2052. </member>
  2053. <member name="M:SuperMap.Chart.S57EditDatasetGroup.Validate(SuperMap.Chart.ChartValidateParameter,System.Boolean)">
  2054. <summary>
  2055. Check the chart data according to the given parameters.
  2056. </summary>
  2057. <param name="parameter">The specified chart validation parameter.</param>
  2058. <param name="isShowProgress">Whether to show the progress information or not. Show the progress bar if it is true; otherwise, false.</param>
  2059. <returns>The collection of the chart data after being validated.</returns>
  2060. </member>
  2061. <member name="M:SuperMap.Chart.S57EditDatasetGroup.BuildS57TopologyRelation(System.Boolean)">
  2062. <summary>
  2063. Builds the chain node topology for the chart that corresponds to the current S-57 chart dataset group.
  2064. </summary>
  2065. <param name="isShowProgress">Whether to show the progress information or not. Show the progress bar if it is true; otherwise, false.</param>
  2066. <returns>true if successful; otherwise, false.</returns>
  2067. </member>
  2068. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetFeatureToSpatialPointers(System.Int64,SuperMap.Data.GeometryType,System.Boolean,System.Boolean)">
  2069. <summary>
  2070. Gets the feature objects reference to the spatial objects. The precondition is that the topology relation must be built.
  2071. </summary>
  2072. <param name="featureRCID">This specified feature RCID.</param>
  2073. <param name="geometryType">The geometry type of the specified feature object.</param>
  2074. <param name="isSpatialAttribute">Whether to return spatial attributes or not.</param>
  2075. <param name="isGeometry">Whether to return spatial geometries or not.</param>
  2076. <returns>The reference information array of feature objects to spatial objects.</returns>
  2077. </member>
  2078. <member name="M:SuperMap.Chart.S57EditDatasetGroup.SetMaskingIndicator(System.Int64,System.String,SuperMap.Chart.S57MaskingIndicator)">
  2079. <summary>
  2080. Sets the masking indicator of the feature objects reference to the spatial objects. It is only valid for the line and region feature objects. The precondition is that the topology relation must be built.
  2081. </summary>
  2082. <param name="featureRCID">This specified feature RCID.</param>
  2083. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2084. <param name="maskingIndicator">The specified masking indicator type.</param>
  2085. <returns>True if successful; otherwise, false.</returns>
  2086. </member>
  2087. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetMaskingIndicator(System.Int64,System.String)">
  2088. <summary>
  2089. Gets the masking indicator of the feature objects reference to the spatial objects. It is only valid for the line and region feature objects. The precondition is that the topology relation must be built.
  2090. </summary>
  2091. <param name="featureRCID">The specified feature RCID.</param>
  2092. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2093. <returns>The masking indicator of the feature objects reference to the spatial objects.</returns>
  2094. </member>
  2095. <member name="M:SuperMap.Chart.S57EditDatasetGroup.SetSpatialAttribute(System.String,System.String,System.Object)">
  2096. <summary>
  2097. Sets the spatial attribute value.
  2098. </summary>
  2099. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2100. <param name="attributeAcronym">The acronym of the specified attribute.</param>
  2101. <param name="value">The specified attribute value.</param>
  2102. <returns>True if successful; otherwise, false.</returns>
  2103. </member>
  2104. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetSpatialAttributes(System.String)">
  2105. <summary>
  2106. Gets the spatial attribute value.
  2107. </summary>
  2108. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2109. <returns>The array of the spatial attribute values.</returns>
  2110. </member>
  2111. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetSpatialAttribute(System.String,System.String)">
  2112. <summary>
  2113. Gets the spatial attribute value.
  2114. </summary>
  2115. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2116. <param name="attributeAcronym">The acronym of the specified attribute to get.</param>
  2117. <returns>The spatial attribute value.</returns>
  2118. </member>
  2119. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetSpatialGeometry(System.String)">
  2120. <summary>
  2121. Gets the spatial geometry object.
  2122. </summary>
  2123. <param name="spatialObjectID">The specified spatial object ID. For the spatial object ID, please refer to the <see cref="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">SpatialObjectID</see> property of the <see cref="T:SuperMap.Chart.S57FeatureToSpatialPointer">S57FeatureToSpatialPointer</see> class.</param>
  2124. <returns>The spatial geometry object.</returns>
  2125. </member>
  2126. <member name="M:SuperMap.Chart.S57EditDatasetGroup.BuildFOIDs(System.Boolean)">
  2127. <summary>
  2128. Recreates the feature object ID (FOID) of all feature objects.
  2129. </summary>
  2130. <param name="isShowProgress">Whether to show the progress information or not. Show the progress bar if it is true; otherwise, false.</param>
  2131. <returns>True if successful; otherwise, false.</returns>
  2132. </member>
  2133. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetFIDS">
  2134. <summary>
  2135. Gets the assigned feature ID distinction (FIDS) when the editable S-57 chart dataset group is created.
  2136. </summary>
  2137. <returns>The assigned feature ID distinction (FIDS) for the editable S-57 chart dataset group.</returns>
  2138. </member>
  2139. <member name="M:SuperMap.Chart.S57EditDatasetGroup.GetFIDNSequenceName">
  2140. <summary>
  2141. Gets the FIDN sequence name of the datasource where the editable S-57 chart dataset group stores.
  2142. </summary>
  2143. <returns>The FIDN sequence name of the datasource where the editable S-57 chart dataset group stores.</returns>
  2144. </member>
  2145. <member name="P:SuperMap.Chart.S57EditDatasetGroup.CellInformation">
  2146. <summary>
  2147. Gets or sets the chart definition parameters of the current editable S-57 dataset group.
  2148. </summary>
  2149. </member>
  2150. <member name="E:SuperMap.Chart.S57EditDatasetGroup.Stepped">
  2151. <summary>
  2152. The event is trigged when the process bar is activated.
  2153. </summary>
  2154. </member>
  2155. <member name="T:SuperMap.Chart.S57FeatureToSpatialPointer">
  2156. <summary>
  2157. S57FeatureToSpatialPointer is used for retrieving the reference relationships between features and spatial objects, including the record ID of the referenced spatial object (RCID), the directions that Linear and planar features are relative to the spatial objects, the masking indicator of boundary lines and the differentiation between the internal boundary line and the external boundary line of the planar feature.
  2158. </summary>
  2159. </member>
  2160. <member name="M:SuperMap.Chart.S57FeatureToSpatialPointer.Dispose">
  2161. <summary>
  2162. Releases all resources that the object occupies.
  2163. </summary>
  2164. </member>
  2165. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialObjectID">
  2166. <summary>
  2167. Gets an unique identifier of spatial identifier objects.
  2168. </summary>
  2169. </member>
  2170. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.Orientation">
  2171. <summary>
  2172. Gets the reference way for the direction of the edge (linear spatial object).
  2173. </summary>
  2174. </member>
  2175. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.UsageIndicator">
  2176. <summary>
  2177. Gets the usage guide of the planar features to reference edges (linear spatial features).
  2178. </summary>
  2179. </member>
  2180. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.MaskingIndicator">
  2181. <summary>
  2182. Gets the masking indicator of reference edges (linear spatial features).
  2183. </summary>
  2184. </member>
  2185. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.Geometry">
  2186. <summary>
  2187. Gets the geometry object of the referenced spatial features.
  2188. </summary>
  2189. </member>
  2190. <member name="P:SuperMap.Chart.S57FeatureToSpatialPointer.SpatialAttributes">
  2191. <summary>
  2192. Gets the property information of the referenced spatial features.
  2193. </summary>
  2194. </member>
  2195. <member name="T:SuperMap.Chart.S57IntendedUsage">
  2196. <summary>
  2197. This enumeration defines the nautical purpose constant of the S-57 chart.
  2198. </summary>
  2199. </member>
  2200. <member name="F:SuperMap.Chart.S57IntendedUsage.OverView">
  2201. <summary>
  2202. For review,namely schematic diagram.
  2203. </summary>
  2204. </member>
  2205. <member name="F:SuperMap.Chart.S57IntendedUsage.General">
  2206. <summary>
  2207. For general purpose, namely general map.
  2208. </summary>
  2209. </member>
  2210. <member name="F:SuperMap.Chart.S57IntendedUsage.Coastal">
  2211. <summary>
  2212. For coastal areas, namely coastal map.
  2213. </summary>
  2214. </member>
  2215. <member name="F:SuperMap.Chart.S57IntendedUsage.Approach">
  2216. <summary>
  2217. For inshore areas, namely the entrance map.
  2218. </summary>
  2219. </member>
  2220. <member name="F:SuperMap.Chart.S57IntendedUsage.Harbour">
  2221. <summary>
  2222. For ports, namely port map.
  2223. </summary>
  2224. </member>
  2225. <member name="F:SuperMap.Chart.S57IntendedUsage.Berthing">
  2226. <summary>
  2227. For berths, namely anchoring map.
  2228. </summary>
  2229. </member>
  2230. <member name="T:SuperMap.Chart.S57LexicalLevel">
  2231. <summary>
  2232. This enumeration defines S-57 character set constant.
  2233. </summary>
  2234. </member>
  2235. <member name="F:SuperMap.Chart.S57LexicalLevel.Level0">
  2236. <summary>
  2237. Level 0, i.e., ASC Ⅱ text, ISO / IEC 646 international reference version (IRV).
  2238. </summary>
  2239. </member>
  2240. <member name="F:SuperMap.Chart.S57LexicalLevel.Level1">
  2241. <summary>
  2242. Level 1, i.e., the first part of the ISO 8859, the Latin alphabet series 1 (such as Western Europe, Latin). Level 1 character set can be directly used in almost all computer systems.
  2243. </summary>
  2244. </member>
  2245. <member name="F:SuperMap.Chart.S57LexicalLevel.Level2">
  2246. <summary>
  2247. Level 2, i.e., the UCS-2 complement level 1 (non-combining characters), ISO/IEC 10646 multilingual platform (for example, including Latin characters, Greek, Cyrillic, Chinese, Japanese, etc.). Level 2 character set is suitable for almost all languages​​, but its coding efficiency is low.
  2248. </summary>
  2249. </member>
  2250. <member name="T:SuperMap.Chart.S57MaskingIndicator">
  2251. <summary>
  2252. This enumeration defines the mask indicating constant of the spatial object.
  2253. </summary>
  2254. </member>
  2255. <member name="F:SuperMap.Chart.S57MaskingIndicator.Mask">
  2256. <summary>
  2257. Shield.
  2258. </summary>
  2259. </member>
  2260. <member name="F:SuperMap.Chart.S57MaskingIndicator.Show">
  2261. <summary>
  2262. Display.
  2263. </summary>
  2264. </member>
  2265. <member name="F:SuperMap.Chart.S57MaskingIndicator.None">
  2266. <summary>
  2267. Irrelevant to the mask.
  2268. </summary>
  2269. </member>
  2270. <member name="T:SuperMap.Chart.S57SoundingGroup">
  2271. <summary>
  2272. The S57SoundingGroup class is used for editing the soundings and providing rich functions such as grouping the soundings, adding/deleting sounding points into the sounding group and retrieving and modifying the feature attributes of soundings.
  2273. </summary>
  2274. </member>
  2275. <member name="M:SuperMap.Chart.S57SoundingGroup.#ctor">
  2276. <summary>
  2277. Constructs a new S57SoundingGroup object.
  2278. </summary>
  2279. </member>
  2280. <member name="M:SuperMap.Chart.S57SoundingGroup.#ctor(SuperMap.Chart.S57EditDatasetGroup)">
  2281. <summary>
  2282. Constructs a new S57SoundingGroup object according to the specified S57EditDatasetGroup object.
  2283. </summary>
  2284. <param name="s57EditDatasetGroup">The specified S57EditDatasetGroup object.</param>
  2285. </member>
  2286. <member name="M:SuperMap.Chart.S57SoundingGroup.SetS57EditDatasetGroup(SuperMap.Chart.S57EditDatasetGroup)">
  2287. <summary>
  2288. Set the editable S-57 chart dataset group.
  2289. </summary>
  2290. <param name="s57EditDatasetGroup">The editable S-57 chart dataset group.</param>
  2291. </member>
  2292. <member name="M:SuperMap.Chart.S57SoundingGroup.GroupSoundingAll(System.Int32[])">
  2293. <summary>
  2294. Groups the specified sounding points and automatically divides the soundings point with same attributes into a group.
  2295. </summary>
  2296. <param name="ids">The specified sounding points ID array to be grouped. If it is specified as an null array, then all the sounding points in the sounding dataset will be grouped by default.</param>
  2297. <returns>The feature long name of each sounding group. If grouping is failed, then return null.</returns>
  2298. </member>
  2299. <member name="M:SuperMap.Chart.S57SoundingGroup.GroupSounding(System.Int32[])">
  2300. <summary>
  2301. The specified sounding points are grouped into one group.
  2302. </summary>
  2303. <param name="ids">The specified water depth ID array.</param>
  2304. <returns>The feature long name after grouping. If grouping is failed, then return null.</returns>
  2305. </member>
  2306. <member name="M:SuperMap.Chart.S57SoundingGroup.AddSoundingsToGroup(System.String,System.Int32[])">
  2307. <summary>
  2308. Adds the specified sounding points into an existing sounding group.
  2309. </summary>
  2310. <param name="soundingFOID">The long name of the specified existing sounding group.</param>
  2311. <param name="ids">The specified sounding ID group to be added into the sounding group.</param>
  2312. <returns>True if successful; otherwise, false.</returns>
  2313. </member>
  2314. <member name="M:SuperMap.Chart.S57SoundingGroup.RemoveSoundingsFromGroup(System.String,System.Int32[])">
  2315. <summary>
  2316. Deletes the specified sounding points from an existing sounding group.
  2317. </summary>
  2318. <param name="soundingFOID">The long name of the specified sounding group.</param>
  2319. <param name="ids">The specified sounding points to be deleted.</param>
  2320. <returns>Returns true if successful; otherwise, false.</returns>
  2321. </member>
  2322. <member name="M:SuperMap.Chart.S57SoundingGroup.GetSoundingGroupFeatureIDs">
  2323. <summary>
  2324. Gets the FOID for all the sounding groups in the current chart.
  2325. </summary>
  2326. <returns>The FOID array of the sounding group.</returns>
  2327. </member>
  2328. <member name="M:SuperMap.Chart.S57SoundingGroup.GetSoundingPoints(System.String)">
  2329. <summary>
  2330. Gets the sounding point object of the specified FOID.
  2331. </summary>
  2332. <param name="soundingFOID">The long name of the specified sounding point.</param>
  2333. <returns>The sounding point array with the specified FOID. The sounding point uses the GeoPoint3D object for representation. The Z value is the sounding value. Unit is meter.</returns>
  2334. </member>
  2335. <member name="M:SuperMap.Chart.S57SoundingGroup.GetSoundingGroupAttributes(System.String)">
  2336. <summary>
  2337. Gets the feature attribute of the sounding group of the specified FOID.
  2338. </summary>
  2339. <param name="soundingFOID">The long name of the specified sounding group.</param>
  2340. <returns>The feature attribute collection of sounding group.</returns>
  2341. </member>
  2342. <member name="M:SuperMap.Chart.S57SoundingGroup.GetSoundingGroupAttribute(System.String,System.String)">
  2343. <summary>
  2344. Gets the value of the specified attribute of the sounding group.
  2345. </summary>
  2346. <param name="soundingFOID">The long name of the specified sounding group.</param>
  2347. <param name="attributeAcronym">The specified property acronym.</param>
  2348. <returns>The attribute value of the specified attribute acronym.</returns>
  2349. </member>
  2350. <member name="M:SuperMap.Chart.S57SoundingGroup.SetSoundingGroupAttribute(System.String,System.String,System.Object)">
  2351. <summary>
  2352. Sets the attribute value of the specified attribute of the sounding group.
  2353. </summary>
  2354. <param name="soundingFOID">The long name of the specified sounding group.</param>
  2355. <param name="attributeAcronym">The specified property acronym.</param>
  2356. <param name="value">The specified attribute value.</param>
  2357. <returns>Returns true if successful; otherwise, false.</returns>
  2358. </member>
  2359. <member name="M:SuperMap.Chart.S57SoundingGroup.GetSoundingDepth(System.Int32)">
  2360. <summary>
  2361. Gets the depth of the sounding point.
  2362. </summary>
  2363. <param name="id">The specified soundings IDs.</param>
  2364. <returns>The given depth of the sounding point.</returns>
  2365. </member>
  2366. <member name="M:SuperMap.Chart.S57SoundingGroup.SetSoundingDepth(System.Int32,System.Double)">
  2367. <summary>
  2368. Sets the depth of the sounding point.
  2369. </summary>
  2370. <param name="id">The specified soundings IDs.</param>
  2371. <param name="depth">The specified depth.</param>
  2372. <returns>True if successful; otherwise, false.</returns>
  2373. </member>
  2374. <member name="T:SuperMap.Chart.S58Information">
  2375. <summary>
  2376. The S-58 check item information class. This class is used to get S-58 check ID, check contents, and error type.
  2377. </summary>
  2378. </member>
  2379. <member name="P:SuperMap.Chart.S58Information.CheckID">
  2380. <summary>
  2381. Gets the check ID of this S-58 chart.
  2382. </summary>
  2383. </member>
  2384. <member name="P:SuperMap.Chart.S58Information.Level">
  2385. <summary>
  2386. Gets the error level of this S-58 chart.
  2387. </summary>
  2388. </member>
  2389. <member name="P:SuperMap.Chart.S58Information.Description">
  2390. <summary>
  2391. Gets the checking description of this S-58 chart.
  2392. </summary>
  2393. </member>
  2394. <member name="P:SuperMap.Chart.S58Information.Reference">
  2395. <summary>
  2396. Gets the reference of this S-58 chart, i.e., the content position of S-57 standard.
  2397. </summary>
  2398. </member>
  2399. </members>
  2400. </doc>