9using NanoXLSX.Registry;
10using NanoXLSX.Utils.Xml;
17 internal static class WriterPlugInHandler
27 internal static void HandleInlineQueuePlugins(ref XmlElement rootElement, Workbook workbook,
string queueUuid,
int? index =
null)
29 IInlinePlugInWriter queueWriter =
null;
30 string lastUuid =
null;
34 queueWriter = PlugInLoader.GetNextQueuePlugIn<IInlinePlugInWriter>(queueUuid, lastUuid, out currentUuid);
35 if (queueWriter !=
null)
37 queueWriter.Init(ref rootElement, workbook, index);
38 queueWriter.Execute();
39 lastUuid = currentUuid;
46 }
while (queueWriter !=
null);