This .NET enum wraps AcDb::UpdateDirection ObjectARX enum. It gives the enumerations for updating the data source and target data.
Public Enum UpdateDirection DataToSource = 2 SourceToData = 1 End Enum
public enum UpdateDirection {
DataToSource = 2,
SourceToData = 1
}
| Members | Description |
|---|---|
| DataToSource = 2 | Update data source using the target data in AutoCAD object. |
| SourceToData = 1 | Update target data in AutoCAD object from data source. |