Specifies the action that will be taken on an object in an import file.
enum ObjectImportActionEnum { Skip = 0, Import = 1 };
public enum ObjectImportActionEnum { Skip = 0, Import = 1 }
Public Enum ObjectImportActionEnum Skip = 0 Import = 1 End Enum
Members |
Description |
Skip = 0 |
The preferred action is to not import this object, subject to interpretation based on the object's state and whether it's referenced by other objects: State Referenced? Action New No Object will not be imported New Yes Object will be imported Existing * Object will not be imported Duplicate No Object will not be imported Duplicate Yes Object will not be imported. |
Import = 1 |
The object will be imported |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|