This document is archived and information here might be outdated.  Recommended version.


IFieldChecker.InputWorkspace Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IF > IFieldChecker Interface > IFieldChecker.InputWorkspace Property
ArcGIS Developer Help

IFieldChecker.InputWorkspace Property

Input workspace of the fieldchecker.

[Visual Basic .NET]
Public Property InputWorkspace As IWorkspace
[C#]
public IWorkspace InputWorkspace {get; set;}
[C++]
HRESULT get_InputWorkspace(
  IWorkspace** InputWorkspace
);
[C++]
HRESULT put_InputWorkspace(
  IWorkspace* InputWorkspace
);
[C++]
Parameters
InputWorkspace [out, retval]

InputWorkspace is a parameter of type IWorkspace** InputWorkspace [in]
InputWorkspace is a parameter of type IWorkspace*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The InputWorkspace property should be set when the IFieldChecker interface is used for creating a dataset that uses another dataset's fields. For example, when using the feature data converter to create a new dataset, or when cloning the fields of an existing dataset to use with a new dataset.

This property should be set to the source workspace - the workspace that contains the original dataset, not the newly created dataset.

See Also

IFieldChecker Interface