-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxlsm_devkit.ini
More file actions
45 lines (38 loc) · 1.16 KB
/
Copy pathxlsm_devkit.ini
File metadata and controls
45 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[import]
; Controls which items are written back from Markdown to Excel during import.
; 1 = apply from Markdown, 0 = skip (preserve existing Excel state).
; Missing keys default to 1 (all enabled) for backward compatibility,
; except "unlocked" which defaults to 0 (see comment below).
; --- Core ---
value=1
formula=1
named_range=1
; --- Number format and cell protection ---
numfmt=1
; unlocked defaults to 0 (opt-in): applying Locked=False to unintended cells can
; weaken sheet protection. Enable explicitly when you need to restore cell lock state.
; Works with both merge=0 and merge=1 (lazy-unmerge handles slave cells).
unlocked=0
; --- Data validation ---
list=1
; --- Visual styles ---
; Enable only if you edit these from the IDE and need them reflected in Excel.
bg=0
fg=0
font_size=0
bold=0
italic=0
strike=0
wrap=0
halign=0
valign=0
; --- Merged cells ---
; Biggest performance impact: merge=1 calls ws.Cells.UnMerge which can take
; 8-15 minutes on large sheets. Set to 0 to skip UnMerge entirely.
; When merge=0, existing merge structure in Excel is preserved as-is.
merge=0
; --- Hidden rows and columns ---
hidden_rows=0
hidden_cols=0
; --- Shapes ---
shapes=0