Click or drag to resize

MultiRenameDataRegisterRenameActionHandler Method

Registers the rename action handler. This handler is called when the items should be processed (renamed, exported or so). If the function succeeds, the return value should be zero or an empty list. If the function is partially unsuccessfull, for instance because some items could not be renamed, the function should return those unsuccessfully processed items in the list.

Namespace: Altaxo.Gui.Common.MultiRename
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void RegisterRenameActionHandler(
	Func<MultiRenameData, List<Object>> handler
)

Parameters

handler  FuncMultiRenameData, ListObject
The handler function.
See Also