Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I can't understand what XlSaveAsAccessMode is, can someone explain it?

Tags:

excel

I need to know how this enumeration works, but consulting the documentation was not very helpful. I know it's a parameter for saving an Excel workbook and I know it goes from 1-3.

This doesn't help me understand the difference however and I can't seem to find any resources that do so. I would be very grateful if anyone can explain to me what this is used for?

like image 979
Andreas Kruhlmann Avatar asked Sep 07 '25 07:09

Andreas Kruhlmann


1 Answers

XlSaveAsAccessMode Enumeration (Excel) has:

Name          Value     Description

xlExclusive     3        Exclusive mode

xlNoChange      1        Default (does not change the access mode)

xlShared        2        Share list

I think basically just a control over whether another instance/application may or may not write to the file during its save operation.

like image 121
pnuts Avatar answered Sep 10 '25 08:09

pnuts