This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IP > IPlugInFileOperations Interface (ArcObjects .NET 10.4 SDK) |
Provides access to members for copying, deleting and renaming the dataset helper.
A plug-in dataset helper can implement IPlugInFileOperations to support copy, rename and delete for feature datasets, stand-alone tables or stand-alone feature classes.
Description | ||
---|---|---|
CanCopy | True if this dataset can be copied. | |
CanDelete | True if this dataset can be deleted. | |
CanRename | True if this dataset can be renamed. | |
Copy | Copies this dataset to a new dataset with the specified name. | |
Delete | Deletes this dataset. | |
Rename | Renames this dataset. |
If your implementation does not support one of Copy, Rename or Delete, be sure to return E_NOTIMPL from the method, as the ArcGIS framework does not guarantee calling CanCopy, CanRename or CanDelete before these methods.