New answers tagged arctoolbox
2
The online help for Raster To Polygon says:
The Field parameter allows you to choose which attribute field of the
input raster dataset will become an attribute in the output feature
class. If a field is not specified, the cell values of the input
raster (the VALUE field) will become a column with the heading
Gridcode in the attribute table of the ...
3
The most basic difference is the level at which each of the functions are working.
The Feature Class to Feature Class tool is working at the Layer level, meaning that regardless of the features selected, it treats them as a whole. A new feature class is going to be created. This means that you have control over the structure of the new featureclass, ...
6
The Feature Class to Feature Class tool is a Conversion tool. The idea is to convert a feature class in one format (e.g. shapefile) to another (e.g. geodatabase). It also allows the user to control the Field Map - i.e. which fields will be copied over.
The Copy Features tool simply creates an exact copy of the input features. Note - this tool can also be ...
1
The way to do this using tool validation is described in this 10.1 Help Page which should apply equally to 10.0.
1
I would try registering an eventlistener, to help debug what's going on inside of the gp tool.
public static void Test()
{
InvokeTool(@"C:\Program Files (x86)\ArcGIS\Desktop10.1\ArcToolbox\Toolboxes\3D Analyst Tools.tbx",
"AddSurfaceInformation");
}
public static void InvokeTool(string tbxPath, string toolName)
{
var gp = new ...
Top 50 recent answers are included