/
HotXLS-dokumentasjon

Klasse TXLSVBAProject

Representerer the collection of VBA macro modules in the workbook

Syntaks

TXLSVBAProject = class;

Eksempel

This example prints the names of all VBA modules


for I := 0 to Workbook.VBAProject.Count - 1 do
  Writeln(Workbook.VBAProject[I].Name);