readme_dotnet.txt

来自「mitab,读取MapInfo的地图文件」· 文本 代码 · 共 15 行

TXT
15
字号
The .net wrappers include:

	1. MiApi.cs			This imports the c functions and enumerations from version 
						1.3.0 of the MapInfo Tab API.
	
	2. MiWrapper.cs		These classes wrap the functions in MiApi to produce a 
						hierarchy of classes giving readonly access to the feature points. 

						eg. 
						
						Layer layer = Layer.GetByName("c:/test.tab");
						foreach( Feature feature in layer.Features) {
							foreach(Part part in feature.Parts) {
								foreach (Vertrex v in part.Vertices) {
									Console.Out(v.X+

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?