Hi, Can anyone describe how to use the tool StackProfile in the Stand Alone application based on the control axSceneControl, C# .net Engine development kit?
Geoprocessor GP = new Geoprocessor();
ESRI.ArcGIS.Analyst3DTools.StackProfile stackProfile = new
ESRI.ArcGIS.Analyst3DTools.StackProfile();
stackProfile.in_line_features = ???;
stackProfile.profile_targets = ???;
stackProfile.out_table = ???;
stackProfile.out_graph = ???;
GP.Execute(stackProfile, null);
How can I use the results further in the program?
Thanks.