Opens the dataset object specified by the given geoprocessing value object.
[Visual Basic 6.0] Function OpenDataset(
ByVal pValue As IGPValue _
) As IDataset
[Visual Basic .NET] Public Function OpenDataset ( _ ByVal pValue As IGPValue _ ) As IDataset
[C#] public IDataset OpenDataset ( IGPValue pValue );
[Java] public IDataset openDataset ( IGPValue pValue ) throws IOException, AutomationException
[C++] HRESULT OpenDataset( IGPValue* pValue, IDataset** ppDataset );
Parameters
pValue [in]
pValue is a parameter of type IGPValue
ppDataset [out, retval]
ppDataset is a parameter of type IDataset
The OpenDataset method takes in a GPValue object and returns and opens the specified Dataset object. It is typically used inside the Execute method to open the input data.