10using NanoXLSX.Registry;
17 internal static class RederPlugInHandler
26 internal static void HandleInlineQueuePlugins(ref MemoryStream stream, Workbook workbook,
string queueUuid,
int? index = 0)
28 IInlinePlugInReader queueReader =
null;
29 string lastUuid =
null;
33 queueReader = PlugInLoader.GetNextQueuePlugIn<IInlinePlugInReader>(queueUuid, lastUuid, out currentUuid);
34 if (queueReader !=
null)
37 queueReader.Init(ref stream, workbook, index);
38 queueReader.Execute();
39 lastUuid = currentUuid;
46 }
while (queueReader !=
null);