Hi,I was hoping someone may be able to post the correct syntax to correctly define some of the parameters of the Create Tin / Topo o Raster Geoprocessors?For example:With Create Tin:I can set the input vector, but do not know how to define the input fields, Softline / Hardline or Tags. Dim GP As New Geoprocessor Dim RasConv As ESRI.ArcGIS.Analyst3DTools.TinRaster = New ESRI.ArcGIS.Analyst3DTools.TinRaster RasConv.in_tin = Label1.Text & "\" & TextBox1.Text RasConv.out_raster = Label1.Text & "\" & TextBox1.Text & "R1" Inras1 = GP.Execute(RasConv, Nothing)
According to the help:[[in_feature_class, height_field, SF_type, tag_value],...] - can all be used to define the input feature, the height field, SF_Type and Tag_Value.For the life of me I cannot get this to work.Thanks, if anyone can help.K