GPValue

Derived Types: GPBoolean, GPDataFile, GPDate, GPDouble, GPFeatureRecordSetLayer, GPLinearUnit, GPLong, GPRasterData, GPRasterDataLayer, GPRecordSet, GPString.

An abstract base class that is used to group together its derived types.

Examples

C#

GPString gpString = new GPString();

gpString.Value = "reedley";

GPLinearUnit gpLinearUnit = new GPLinearUnit();

gpLinearUnit.Value = 100;

gpLinearUnit.Units = esriUnits.esriMeters;

GPValue[] inputValues = new GPValue[2] { gpString, gpLinearUnit };

11/8/2016