ProjectFoldersCopyItemsToFolder Method |
Copies the items given in the list (tables, graphs and folders) to another folder, which is given by newFolderName. The copying
is done by cloning the items.
Namespace: Altaxo.MainAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void CopyItemsToFolder(
IList<Object> list,
string destinationFolderName,
DocNodeProxyReporter? ReportProxies,
bool overwriteExistingItemsOfSameType
)
Parameters
- list IListObject
- List of items to copy.
- destinationFolderName String
- Destination folder name.
- ReportProxies DocNodeProxyReporter
- If not null, this argument is used to relocate references to other items (e.g. columns) to point to the destination folder.
- overwriteExistingItemsOfSameType Boolean
- If true, any item with the same name and same type will be replaced by the copied item. (if false, a new name is found for the copied item which not conflicts with the existing items).
See Also