-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.json
More file actions
7631 lines (7631 loc) · 493 KB
/
index.json
File metadata and controls
7631 lines (7631 loc) · 493 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"product": "Aspose.Cells",
"platform": "net",
"framework": "net10.0",
"package_version": "fixed",
"total_examples": 1700,
"total_categories": 25,
"last_updated": "2026-05-08",
"categories": [
{
"name": "cells-data",
"file_count": 81,
"examples": [
{
"file": "access-and-modify-specific-rich-text-segments-within-a-cell-programmatically-in-.cs",
"title": "Access and modify specific rich text segments within a cell programmatically in XLSX files."
},
{
"file": "apply-an-autofilter-to-a-worksheet-in-an-xlsx-workbook-to-enable-dynamic-data-fi.cs",
"title": "Apply an AutoFilter to a worksheet in an XLSX workbook to enable dynamic data filtering."
},
{
"file": "apply-an-autofilter-to-an-xlsx-worksheet-programmatically-to-enable-dynamic-data.cs",
"title": "Apply an AutoFilter to an XLSX worksheet programmatically to enable dynamic data filtering functionality."
},
{
"file": "apply-and-configure-various-filter-types-on-xlsx-worksheets-to-control-data-visi.cs",
"title": "Apply and configure various filter types on XLSX worksheets to control data visibility and retrieval."
},
{
"file": "apply-data-validation-rules-to-xlsx-worksheets-using-the-provided-net-api-for-ce.cs",
"title": "Apply data validation rules to XLSX worksheets using the provided .NET API for cell constraints."
},
{
"file": "apply-filtering-criteria-to-data-within-an-xlsx-spreadsheet-to-display-rows-that.cs",
"title": "Apply filtering criteria to data within an XLSX spreadsheet to display rows that meet specified conditions."
},
{
"file": "capture-and-present-the-console-output-produced-when-the-sample-code-processes-a.cs",
"title": "Capture and present the console output produced when the sample code processes an XLSX workbook."
},
{
"file": "convert-a-datatable-into-an-xlsx-workbook-using-the-net-spreadsheet-api-preservi.cs",
"title": "Convert a DataTable into an XLSX workbook using the .NET spreadsheet API, preserving column types and formatting."
},
{
"file": "convert-textformatted-numeric-cells-to-true-numeric-values-in-an-excel-worksheet.cs",
"title": "Convert text\\u2011formatted numeric cells to true numeric values in an Excel worksheet and save the result as an XLSX file."
},
{
"file": "create-and-manipulate-excel-workbooks-programmatically-storing-all-data-in-the-x.cs",
"title": "Create and manipulate Excel workbooks programmatically, storing all data in the XLSX file format."
},
{
"file": "define-and-apply-data-validation-constraints-within-an-xlsx-workbook-to-enforce-.cs",
"title": "Define and apply data validation constraints within an XLSX workbook to enforce input rules."
},
{
"file": "determine-the-maximum-occupied-row-and-column-indices-in-an-xlsx-worksheet-using.cs",
"title": "Determine the maximum occupied row and column indices in an XLSX worksheet using MaxDataRow and MaxDataColumn."
},
{
"file": "determine-whether-a-cells-data-validation-in-an-xlsx-workbook-is-configured-as-a.cs",
"title": "Determine whether a cell's data validation in an XLSX workbook is configured as a drop\\u2011down list."
},
{
"file": "emit-spreadsheet-data-to-the-console-using-xlsx-format-ensuring-compatibility-wi.cs",
"title": "Emit spreadsheet data to the console using XLSX format, ensuring compatibility with standard Excel readers."
},
{
"file": "employ-enumerators-to-iterate-through-worksheets-rows-and-cells-within-an-xlsx-w.cs",
"title": "Employ enumerators to iterate through worksheets, rows, and cells within an XLSX workbook efficiently."
},
{
"file": "employ-the-net-api-to-programmatically-read-modify-and-generate-spreadsheet-data.cs",
"title": "Employ the .NET API to programmatically read, modify, and generate spreadsheet data in XLSX format."
},
{
"file": "enhance-the-current-xlsx-validation-by-incorporating-a-cellarea-definition-into-.cs",
"title": "Enhance the current XLSX validation by incorporating a CellArea definition into the existing validation logic."
},
{
"file": "enumerate-and-describe-the-supported-data-validation-types-applicable-to-workshe.cs",
"title": "Enumerate and describe the supported data validation types applicable to worksheets in the XLSX file format."
},
{
"file": "export-a-defined-cell-range-including-its-header-row-to-an-xlsx-file-while-prese.cs",
"title": "Export a defined cell range, including its header row, to an XLSX file while preserving formatting."
},
{
"file": "export-excel-data-using-c-to-generate-an-xlsx-file-while-maintaining-worksheet-f.cs",
"title": "Export Excel data using C# to generate an XLSX file while maintaining worksheet fidelity."
},
{
"file": "export-worksheet-data-to-an-xlsx-file-while-preserving-formatting-formulas-and-d.cs",
"title": "Export worksheet data to an XLSX file while preserving formatting, formulas, and data integrity."
},
{
"file": "generate-a-concluding-workbook-in-xlsx-format-that-summarizes-the-processed-data.cs",
"title": "Generate a concluding workbook in XLSX format that summarizes the processed data and key metrics."
},
{
"file": "generate-an-xlsx-file-by-exporting-worksheet-data-using-net-apis-while-preservin.cs",
"title": "Generate an XLSX file by exporting worksheet data using .NET APIs while preserving cell values and formatting."
},
{
"file": "identify-and-list-all-worksheet-cells-that-contain-formulas-within-an-xlsx-workb.cs",
"title": "Identify and list all worksheet cells that contain formulas within an XLSX workbook using the provided API."
},
{
"file": "identify-typical-application-scenarios-where-the-xlsx-format-can-be-utilized-wit.cs",
"title": "Identify typical application scenarios where the XLSX format can be utilized within .NET solutions."
},
{
"file": "implement-an-enumerator-that-iterates-through-columns-of-an-xlsx-worksheet-expos.cs",
"title": "Implement an enumerator that iterates through columns of an XLSX worksheet, exposing each column\\u2019s data sequentially."
},
{
"file": "implement-an-enumerator-to-iterate-over-cells-in-an-xlsx-workbook-programmatical.cs",
"title": "Implement an enumerator to iterate over cells in an XLSX workbook programmatically, supporting row and column traversal."
},
{
"file": "implement-c-functionality-to-retrieve-and-modify-specific-richtext-fragments-wit.cs",
"title": "Implement C# functionality to retrieve and modify specific rich\\u2011text fragments within a cell of an XLSX workbook."
},
{
"file": "implement-c-logic-that-parses-numeric-strings-into-numeric-types-and-writes-the-.cs",
"title": "Implement C# logic that parses numeric strings into numeric types and writes the results to an XLSX file."
},
{
"file": "implement-concurrent-reading-of-cell-values-from-an-xlsx-workbook-using-multi-th.cs",
"title": "Implement concurrent reading of cell values from an XLSX workbook using multi-threaded access efficiently."
},
{
"file": "implement-data-validation-in-xlsx-spreadsheets-following-microsoft-excel-specifi.cs",
"title": "Implement data validation in XLSX spreadsheets following Microsoft\\u202fExcel specifications, including custom formulas and list constraints."
},
{
"file": "implement-data-validation-rules-on-cells-within-an-xlsx-workbook-using-net-apis-.cs",
"title": "Implement data validation rules on cells within an XLSX workbook using .NET APIs programmatically."
},
{
"file": "implement-sorting-functionality-for-data-within-an-xlsx-workbook-applying-excels.cs",
"title": "Implement sorting functionality for data within an XLSX workbook, applying Excel\\u2019s native sorting capabilities."
},
{
"file": "implement-sorting-of-data-within-an-xlsx-workbook-applying-specified-criteria-an.cs",
"title": "Implement sorting of data within an XLSX workbook, applying specified criteria and preserving cell formatting."
},
{
"file": "implement-various-data-validation-types-in-xlsx-files-and-execute-them-programma.cs",
"title": "Implement various data validation types in XLSX files and execute them programmatically during spreadsheet processing."
},
{
"file": "import-a-datacolumn-into-an-xlsx-workbook-mapping-column-data-to-corresponding-e.cs",
"title": "Import a DataColumn into an XLSX workbook, mapping column data to corresponding Excel worksheet cells."
},
{
"file": "import-a-datatable-into-an-xlsx-workbook-mapping-rows-and-columns-to-correspondi.cs",
"title": "Import a DataTable into an XLSX workbook, mapping rows and columns to corresponding spreadsheet cells."
},
{
"file": "import-a-dataview-into-an-xlsx-workbook-programmatically-mapping-columns-to-work.cs",
"title": "Import a DataView into an XLSX workbook programmatically, mapping columns to worksheet cells and preserving data types."
},
{
"file": "import-data-from-a-dynamic-object-into-an-xlsx-workbook-using-it-as-the-data-sou.cs",
"title": "Import data from a dynamic object into an XLSX workbook using it as the data source."
},
{
"file": "import-data-from-a-net-arraylist-into-an-xlsx-workbook-mapping-collection-elemen.cs",
"title": "Import data from a .NET ArrayList into an XLSX workbook, mapping collection elements to worksheet cells."
},
{
"file": "import-data-from-an-in-memory-array-into-an-xlsx-workbook-preserving-data-types-.cs",
"title": "Import data from an in-memory array into an XLSX workbook, preserving data types and cell formatting."
},
{
"file": "import-data-from-custom-objects-into-an-xlsx-workbook-and-verify-the-merged-cell.cs",
"title": "Import data from custom objects into an XLSX workbook and verify the merged cell regions programmatically."
},
{
"file": "import-data-from-custom-objects-into-an-xlsx-workbook-programmatically-mapping-o.cs",
"title": "Import data from custom objects into an XLSX workbook programmatically, mapping object properties to worksheet cells."
},
{
"file": "import-data-into-a-worksheet-from-an-xlsx-file-programmatically-mapping-cells-to.cs",
"title": "Import data into a worksheet from an XLSX file, programmatically mapping cells to their corresponding ranges."
},
{
"file": "import-data-into-an-xlsx-workbook-via-the-icellsdatatable-interface-mapping-colu.cs",
"title": "Import data into an XLSX workbook via the ICellsDataTable interface, mapping columns to cells efficiently."
},
{
"file": "import-html-formatted-data-into-an-xlsx-workbook-converting-web-content-into-str.cs",
"title": "Import HTML-formatted data into an XLSX workbook, converting web content into structured spreadsheet cells."
},
{
"file": "import-json-data-into-an-xlsx-workbook-mapping-json-structures-to-corresponding-.cs",
"title": "Import JSON data into an XLSX workbook, mapping JSON structures to corresponding spreadsheet cells and tables."
},
{
"file": "insert-data-into-an-xlsx-worksheet-following-rowmajor-order-before-proceeding-to.cs",
"title": "Insert data into an XLSX worksheet following row\\u2011major order before proceeding to column\\u2011wise population."
},
{
"file": "insert-htmlformatted-rich-text-into-a-worksheet-cell-when-programmatically-gener.cs",
"title": "Insert HTML\\u2011formatted rich text into a worksheet cell when programmatically generating an XLSX file."
},
{
"file": "load-data-from-an-xlsx-file-into-a-worksheet-mapping-cells-to-the-appropriate-da.cs",
"title": "Load data from an XLSX file into a worksheet, mapping cells to the appropriate data structures."
},
{
"file": "locate-cells-in-an-xlsx-workbook-that-match-a-given-string-or-numeric-value.cs",
"title": "Locate cells in an XLSX workbook that match a given string or numeric value."
},
{
"file": "locate-cells-in-an-xlsx-workbook-that-match-the-provided-data-criteria-across-al.cs",
"title": "Locate cells in an XLSX workbook that match the provided data criteria across all worksheets."
},
{
"file": "maintain-a-leading-singlequote-prefix-for-cell-values-or-ranges-when-exporting-t.cs",
"title": "Maintain a leading single\\u2011quote prefix for cell values or ranges when exporting to XLSX files."
},
{
"file": "manipulate-spreadsheet-data-programmatically-with-full-xlsx-format-support-enabl.cs",
"title": "Manipulate spreadsheet data programmatically with full XLSX format support, enabling reading, writing, and editing capabilities."
},
{
"file": "parse-stringbased-numeric-values-convert-them-to-numeric-types-and-generate-an-x.cs",
"title": "Parse string\\u2011based numeric values, convert them to numeric types, and generate an XLSX workbook containing the data."
},
{
"file": "process-xlsx-columns-that-contain-nonstrongly-typed-data-preserving-original-val.cs",
"title": "Process XLSX columns that contain non\\u2011strongly typed data, preserving original values during import and manipulation."
},
{
"file": "programmatically-generate-row-level-subtotals-in-an-xlsx-worksheet-by-applying-s.cs",
"title": "Programmatically generate row-level subtotals in an XLSX worksheet by applying spreadsheet aggregation functions to grouped data."
},
{
"file": "provide-a-concise-overview-of-the-librarys-features-presented-in-an-xlsx-workboo.cs",
"title": "Provide a concise overview of the library's features presented in an XLSX workbook for developers."
},
{
"file": "provide-sample-net-code-illustrating-creation-manipulation-and-saving-of-workboo.cs",
"title": "Provide sample .NET code illustrating creation, manipulation, and saving of workbook data in XLSX format."
},
{
"file": "retrieve-a-cell-object-by-its-named-reference-from-an-xlsx-worksheet-within-the-.cs",
"title": "Retrieve a cell object by its named reference from an XLSX worksheet within the workbook."
},
{
"file": "retrieve-a-cell-object-from-an-xlsx-worksheet-by-specifying-its-row-and-column-i.cs",
"title": "Retrieve a cell object from an XLSX worksheet by specifying its row and column indices."
},
{
"file": "retrieve-a-cell-object-from-the-worksheets-cells-collection-using-its-zerobased-.cs",
"title": "Retrieve a cell object from the worksheet's cells collection using its zero\\u2011based index in an XLSX file."
},
{
"file": "retrieve-a-comprehensive-list-of-documentation-articles-associated-with-a-workbo.cs",
"title": "Retrieve a comprehensive list of documentation articles associated with a workbook saved in XLSX format."
},
{
"file": "retrieve-and-manipulate-individual-cells-within-an-xlsx-workbook-using-the-provi.cs",
"title": "Retrieve and manipulate individual cells within an XLSX workbook using the provided API methods."
},
{
"file": "retrieve-or-manipulate-individual-cells-within-an-xlsx-worksheet-programmaticall.cs",
"title": "Retrieve or manipulate individual cells within an XLSX worksheet programmatically via the .NET API."
},
{
"file": "retrieve-the-cells-string-content-from-an-xlsx-worksheet-both-with-its-original-.cs",
"title": "Retrieve the cell's string content from an XLSX worksheet both with its original formatting and as plain text."
},
{
"file": "retrieve-the-worksheets-full-display-range-from-an-xlsx-file-returning-the-maxim.cs",
"title": "Retrieve the worksheet's full display range from an XLSX file, returning the maximal cell boundaries."
},
{
"file": "search-and-locate-specific-data-within-an-xlsx-workbook-returning-matching-cell-.cs",
"title": "Search and locate specific data within an XLSX workbook, returning matching cell references and values."
},
{
"file": "sort-rows-in-an-xlsx-workbook-based-on-cell-background-color-while-maintaining-d.cs",
"title": "Sort rows in an XLSX workbook based on cell background color while maintaining data integrity."
},
{
"file": "sort-spreadsheet-data-programmatically-when-working-with-xlsx-files-maintaining-.cs",
"title": "Sort spreadsheet data programmatically when working with XLSX files, maintaining original formatting and data types."
},
{
"file": "transform-numeric-strings-in-a-worksheet-to-true-numeric-types-and-save-the-work.cs",
"title": "Transform numeric strings in a worksheet to true numeric types and save the workbook as an XLSX file using .NET."
},
{
"file": "utilize-enumerators-to-iterate-over-workbook-elements-in-xlsx-files-applying-the.cs",
"title": "Utilize enumerators to iterate over workbook elements in XLSX files, applying them within worksheets, rows, and cells."
},
{
"file": "utilize-findoptions-to-search-for-specific-cell-values-or-formulas-within-an-xls.cs",
"title": "Utilize FindOptions to search for specific cell values or formulas within an XLSX workbook."
},
{
"file": "implement-an-enumerator-to-iterate-over-rows-in-an-xlsx-worksheet-efficiently-su.cs",
"title": "Implement advanced XLSX operations, including custom styles, data validation, and complex formulas handling within workbooks."
},
{
"file": "identify-appropriate-scenarios-for-applying-enumerators-when-processing-xlsx-fil.cs",
"title": "Apply an auto‑filter to data in an XLSX workbook to enable dynamic row and column filtering."
},
{
"file": "import-a-datagrid-into-an-xlsx-worksheet-mapping-grid-columns-to-worksheet-cells.cs",
"title": "Define XLSX worksheet columns that enforce strongly typed data for each cell, ensuring type safety during import and export."
},
{
"file": "define-xlsx-worksheet-columns-that-enforce-strongly-typed-data-for-each-cell-ens.cs",
"title": "Import a DataGrid into an XLSX worksheet, mapping grid columns to worksheet cells and preserving data types."
},
{
"file": "apply-an-autofilter-to-data-in-an-xlsx-workbook-to-enable-dynamic-row-and-column.cs",
"title": "Import data from a GridView control into an XLSX workbook, preserving cell formatting and structure."
},
{
"file": "implement-advanced-xlsx-operations-including-custom-styles-data-validation-and-c.cs",
"title": "Identify appropriate scenarios for applying enumerators when processing XLSX files during data extraction and manipulation in .NET applications."
},
{
"file": "import-data-from-a-gridview-control-into-an-xlsx-workbook-preserving-cell-format.cs",
"title": "Implement an enumerator to iterate over rows in an XLSX worksheet efficiently, supporting lazy loading and memory optimization."
},
{
"file": "export-the-worksheets-display-range-to-an-xlsx-file-preserving-only-the-visible-.cs",
"title": "Export the worksheet's display range to an XLSX file, preserving only the visible cells."
}
],
"required_namespaces": [
"System",
"Aspose.Cells",
"System.Collections.Generic",
"System.Drawing",
"System.Data",
"System.Collections",
"System.IO",
"System.Text",
"System.Threading",
"System.Dynamic"
],
"key_apis": [
"Program",
"Console.WriteLine",
"CellArea.CreateCellArea",
"Validations.Add",
"Rows.Add",
"Columns.Add",
"AutoFilter.Refresh",
"Cells.CreateRange",
"Worksheets.Add",
"Rows.GetEnumerator",
"AutoFilter.Filter",
"AutoFilter.Custom",
"Validations.GetValidationInCell",
"Worksheets.GetEnumerator",
"File.Exists"
]
},
{
"name": "comments-and-notes",
"file_count": 23,
"examples": [
{
"file": "activate-the-new-comment-button-on-a-workbook-loaded-in-xlsx-format-to-insert-a-.cs",
"title": "Activate the New Comment button on a workbook loaded in XLSX format to insert a comment."
},
{
"file": "change-the-color-of-an-excel-comment-in-a-loaded-xlsx-workbook-programmatically-.cs",
"title": "Change the color of an Excel comment in a loaded XLSX workbook programmatically using the API."
},
{
"file": "delete-all-threaded-comments-from-an-xlsx-workbook-after-loading-the-file-into-m.cs",
"title": "Delete all threaded comments from an XLSX workbook after loading the file into memory."
},
{
"file": "implement-threaded-comments-functionality-within-a-workbook-loaded-from-an-xlsx-.cs",
"title": "Implement threaded comments functionality within a workbook loaded from an XLSX file, supporting reply threading and metadata."
},
{
"file": "insert-a-threaded-comment-into-an-xlsx-workbook-that-has-been-loaded-programmati.cs",
"title": "Insert a threaded comment into an XLSX workbook that has been loaded programmatically using the API."
},
{
"file": "insert-threaded-comments-into-an-xlsx-workbook-after-loading-it-enabling-collabo.cs",
"title": "Insert threaded comments into an XLSX workbook after loading it, enabling collaborative annotations across multiple users."
},
{
"file": "invoke-a-context-menu-on-the-target-cell-of-an-opened-xlsx-workbook-to-add-a-com.cs",
"title": "Invoke a context menu on the target cell of an opened XLSX workbook to add a comment."
},
{
"file": "modify-a-threaded-comment-in-an-xlsx-workbook-programmatically-using-the-net-spr.cs",
"title": "Modify a threaded comment in an XLSX workbook programmatically using the .NET spreadsheet library."
},
{
"file": "modify-a-threaded-comment-within-an-xlsx-workbook-programmatically-using-the-exc.cs",
"title": "Modify a threaded comment within an XLSX workbook programmatically using the Excel library's comment management API."
},
{
"file": "modify-the-background-color-of-a-comment-in-an-xlsx-workbook-after-loading-the-f.cs",
"title": "Modify the background color of a comment in an XLSX workbook after loading the file."
},
{
"file": "modify-the-comment-font-color-within-an-xlsx-workbook-by-accessing-its-comment-s.cs",
"title": "Modify the comment font color within an XLSX workbook by accessing its comment style and setting the desired color."
},
{
"file": "modify-the-comment-text-orientation-within-an-xlsx-workbook-after-loading-it-pro.cs",
"title": "Modify the comment text orientation within an XLSX workbook after loading it programmatically in memory."
},
{
"file": "modify-threaded-comments-within-an-xlsx-workbook-after-loading-it-into-memory-vi.cs",
"title": "Modify threaded comments within an XLSX workbook after loading it into memory via the API."
},
{
"file": "programmatically-delete-all-threaded-comments-from-an-xlsx-workbook-after-loadin.cs",
"title": "Programmatically delete all threaded comments from an XLSX workbook after loading it into memory."
},
{
"file": "programmatically-select-the-review-tab-on-the-ribbon-of-a-workbook-that-has-been.cs",
"title": "Programmatically select the Review tab on the ribbon of a workbook that has been loaded from an XLSX file."
},
{
"file": "provide-sample-code-demonstrating-operations-on-a-workbook-opened-from-an-xlsx-f.cs",
"title": "Provide sample code demonstrating operations on a workbook opened from an XLSX file format."
},
{
"file": "read-an-xlsx-workbook-and-write-its-contents-to-the-console-output-preserving-ce.cs",
"title": "Read an XLSX workbook and write its contents to the console output, preserving cell values and formatting."
},
{
"file": "retrieve-all-threaded-comments-from-an-xlsx-workbook-programmatically-using-the-.cs",
"title": "Retrieve all threaded comments from an XLSX workbook programmatically using the .NET spreadsheet API."
},
{
"file": "retrieve-threaded-comments-from-an-excel-workbook-that-has-been-loaded-in-xlsx-f.cs",
"title": "Retrieve threaded comments from an Excel workbook that has been loaded in XLSX format."
},
{
"file": "retrieve-threaded-comments-from-an-xlsx-workbook-loaded-into-memory-preserving-c.cs",
"title": "Retrieve threaded comments from an XLSX workbook loaded into memory, preserving comment hierarchy and metadata."
},
{
"file": "trigger-the-new-comment-feature-on-an-opened-xlsx-workbook-to-add-a-comment-to-a.cs",
"title": "Trigger the New Comment feature on an opened XLSX workbook to add a comment to a cell."
},
{
"file": "programmatically-retrieve-the-creation-timestamp-metadata-of-each-threaded-comme.cs",
"title": "Insert a threaded comment into an XLSX workbook loaded in memory using the .NET spreadsheet library."
},
{
"file": "insert-a-threaded-comment-into-an-xlsx-workbook-loaded-in-memory-using-the-net-s.cs",
"title": "Programmatically retrieve the creation timestamp metadata of each threaded comment within an XLSX workbook."
}
],
"required_namespaces": [
"System",
"Aspose.Cells",
"System.Drawing",
"Aspose.Cells.Drawing",
"System.IO"
],
"key_apis": [
"Program",
"Console.WriteLine",
"Comments.Add",
"Comments.AddThreadedComment",
"Comments.GetThreadedComments",
"ThreadedCommentAuthors.Add",
"CellsHelper.CellIndexToName",
"RetrieveThreadedComments",
"ChangeCommentColor",
"Now.AddMinutes",
"CommentCollection.Add",
"ModifyThreadedComment",
"ModifyCommentBackground",
"ModifyCommentOrientation",
"Comments.Clear"
]
},
{
"name": "conversion",
"file_count": 14,
"examples": [
{
"file": "convert-an-xlsx-workbook-to-a-tiff-image-file-preserving-visual-fidelity-and-lay.cs",
"title": "Convert an XLSX workbook to a TIFF image file, preserving visual fidelity and layout."
},
{
"file": "convert-an-xlsx-workbook-to-csv-format-preserving-delimiter-placeholders-for-emp.cs",
"title": "Convert an XLSX workbook to CSV format, preserving delimiter placeholders for empty rows while ensuring proper row alignment."
},
{
"file": "transform-a-workbook-in-xlsx-format-into-an-xml-file-using-the-librarys-conversi.cs",
"title": "Transform a workbook in XLSX format into an XML file using the library\\u2019s conversion capabilities."
},
{
"file": "transform-an-xlsx-workbook-into-a-csv-file-removing-any-leading-empty-rows-and-c.cs",
"title": "Transform an XLSX workbook into a CSV file, removing any leading empty rows and columns during conversion."
},
{
"file": "transform-an-xlsx-workbook-into-a-docx-document-preserving-cell-data-and-formatt.cs",
"title": "Transform an XLSX workbook into a DOCX document, preserving cell data and formatting during conversion."
},
{
"file": "transform-an-xlsx-workbook-into-a-json-file-preserving-worksheet-data-cell-types.cs",
"title": "Transform an XLSX workbook into a JSON file, preserving worksheet data, cell types, and hierarchy."
},
{
"file": "transform-an-xlsx-workbook-into-a-pdf-document-preserving-formatting-layout-and-.cs",
"title": "Transform an XLSX workbook into a PDF document, preserving formatting, layout, and pagination for accurate rendering."
},
{
"file": "transform-an-xlsx-workbook-into-a-pptx-presentation-generating-a-powerpoint-file.cs",
"title": "Transform an XLSX workbook into a PPTX presentation, generating a PowerPoint file from the Excel source."
},
{
"file": "transform-an-xlsx-workbook-into-an-html-document-preserving-cell-formatting-and-.cs",
"title": "Transform an XLSX workbook into an HTML document, preserving cell formatting and content accurately."
},
{
"file": "transform-an-xlsx-workbook-into-an-mhtml-file-while-preserving-all-data-and-form.cs",
"title": "Transform an XLSX workbook into an MHTML file while preserving all data and formatting."
},
{
"file": "transform-an-xlsx-workbook-into-an-ods-file-ensuring-data-fidelity-and-format-co.cs",
"title": "Transform an XLSX workbook into an ODS file, ensuring data fidelity and format compliance throughout the conversion."
},
{
"file": "transform-an-xlsx-workbook-into-an-xps-document-preserving-data-fidelity-and-lay.cs",
"title": "Transform an XLSX workbook into an XPS document, preserving data fidelity and layout during conversion."
},
{
"file": "transform-an-xlsx-workbook-into-csv-tsv-and-txt-files-generating-each-output-for.cs",
"title": "Transform an XLSX workbook into CSV, TSV, and TXT files, generating each output format from the source data."
},
{
"file": "transform-an-xlsx-workbook-into-ods-sxc-and-fods-formats-while-preserving-data-i.cs",
"title": "Transform an XLSX workbook into ODS, SXC, and FODS formats while preserving data integrity and layout."
}
],
"required_namespaces": [
"System",
"Aspose.Cells",
"Aspose.Cells.Utility",
"Aspose.Cells.Rendering",
"Aspose.Cells.Drawing",
"System.Text",
"Aspose.Cells.Saving"
],
"key_apis": [
"Console.WriteLine",
"Program",
"ConversionUtility.Convert",
"XlsxToTiffConverter",
"XlsxToCsv",
"XlsxToXmlConverter",
"XlsxToDocxConverter",
"XlsxToPdfConverter",
"Converter",
"Converter.Run",
"Workbook.Save",
"ConvertToMhtml",
"XlsxToXpsConverter",
"WorkbookConverter",
"Path.ChangeExtension"
]
},
{
"name": "document-properties",
"file_count": 30,
"examples": [
{
"file": "access-the-document-information-panel-of-an-xlsx-workbook-to-display-its-custom-.cs",
"title": "Access the Document Information Panel of an XLSX workbook to display its custom properties."
},
{
"file": "activate-thumbnail-scaling-in-an-xlsx-workbook-by-configuring-the-scalecrop-prop.cs",
"title": "Activate thumbnail scaling in an XLSX workbook by configuring the ScaleCrop property to TRUE."
},
{
"file": "add-or-delete-custom-document-properties-in-an-xlsx-workbook-programmatically-vi.cs",
"title": "Add or delete custom document properties in an XLSX workbook programmatically via the API."
},
{
"file": "add-untyped-custom-properties-to-an-xlsx-workbook-to-store-metadata-without-spec.cs",
"title": "Add untyped custom properties to an XLSX workbook to store metadata without specifying a data type."
},
{
"file": "add-user-defined-properties-to-an-xlsx-workbook-so-they-appear-in-the-document-i.cs",
"title": "Add user-defined properties to an XLSX workbook so they appear in the Document Information Panel."
},
{
"file": "analyze-how-the-language-property-is-managed-within-an-xlsx-workbook-and-ensure-.cs",
"title": "Analyze how the language property is managed within an XLSX workbook and ensure correct localization behavior."
},
{
"file": "configure-the-scalecrop-built-in-property-for-an-xlsx-workbook-to-adjust-its-sca.cs",
"title": "Configure the ScaleCrop built-in property for an XLSX workbook to adjust its scaling behavior."
},
{
"file": "create-read-update-and-delete-workbook-document-properties-within-an-xlsx-file-u.cs",
"title": "Create, read, update, and delete workbook document properties within an XLSX file using the .NET API."
},
{
"file": "delete-all-custom-document-properties-from-an-xlsx-workbook-programmatically-ens.cs",
"title": "Delete all custom document properties from an XLSX workbook programmatically, ensuring only standard properties remain."
},
{
"file": "disable-thumbnail-cropping-in-an-xlsx-workbook-by-configuring-the-scalecrop-prop.cs",
"title": "Disable thumbnail cropping in an XLSX workbook by configuring the ScaleCrop property to FALSE."
},
{
"file": "examine-and-manipulate-advanced-workbook-property-features-within-an-xlsx-spread.cs",
"title": "Examine and manipulate advanced workbook property features within an XLSX spreadsheet to control metadata and custom settings."
},
{
"file": "examine-how-the-version-property-is-managed-within-an-xlsx-workbook-and-ensure-c.cs",
"title": "Examine how the version property is managed within an XLSX workbook and ensure correct handling."
},
{
"file": "identify-and-document-various-scenarios-for-configuring-the-language-property-wi.cs",
"title": "Identify and document various scenarios for configuring the language property within an XLSX workbook."
},
{
"file": "identify-relevant-usage-scenarios-for-configuring-the-document-version-property-.cs",
"title": "Identify relevant usage scenarios for configuring the document version property within an XLSX workbook."
},
{
"file": "implement-custom-datetime-properties-within-an-xlsx-workbook-using-the-apis-prop.cs",
"title": "Implement custom DateTime properties within an XLSX workbook using the API's property collection features."
},
{
"file": "insert-custom-document-properties-into-an-xlsx-workbook-to-store-additional-meta.cs",
"title": "Insert custom document properties into an XLSX workbook to store additional metadata for downstream processing."
},
{
"file": "inspect-and-retrieve-metadata-properties-from-an-xlsx-workbook-programmatically-.cs",
"title": "Inspect and retrieve metadata properties from an XLSX workbook programmatically using the available API."
},
{
"file": "mark-all-hyperlinks-as-uptodate-by-setting-the-linksuptodate-property-to-true-in.cs",
"title": "Mark all hyperlinks as up\\u2011to\\u2011date by setting the LinksUpToDate property to TRUE in an XLSX workbook."
},
{
"file": "programmatically-delete-all-custom-document-properties-from-an-xlsx-workbook-to-.cs",
"title": "Programmatically delete all custom document properties from an XLSX workbook to clean its metadata thoroughly."
},
{
"file": "provide-example-code-to-assign-a-language-identifier-to-an-xlsx-workbook-program.cs",
"title": "Provide example code to assign a language identifier to an XLSX workbook programmatically using the .NET API."
},
{
"file": "provide-sample-code-that-configures-the-workbooks-document-version-property-for-.cs",
"title": "Provide sample code that configures the workbook's document version property for an XLSX file."
},
{
"file": "read-modify-or-create-document-properties-in-an-xlsx-workbook-via-the-net-api.cs",
"title": "Read, modify, or create document properties in an XLSX workbook via the .NET API."
},
{
"file": "remove-all-custom-document-properties-from-an-xlsx-workbook-programmatically-usi.cs",
"title": "Remove all custom document properties from an XLSX workbook programmatically using the DocumentPropertyCollection API."
},
{
"file": "retrieve-and-manipulate-document-properties-of-an-xlsx-workbook-programmatically.cs",
"title": "Retrieve and manipulate document properties of an XLSX workbook programmatically via the provided API."
},
{
"file": "set-retrieve-and-modify-metadata-properties-of-an-xlsx-workbook-including-custom.cs",
"title": "Set, retrieve, and modify metadata properties of an XLSX workbook, including custom and built\\u2011in attributes, programmatically."
},
{
"file": "set-the-linksuptodate-property-to-false-in-an-xlsx-workbook-to-flag-its-hyperlin.cs",
"title": "Set the LinksUpToDate property to FALSE in an XLSX workbook to flag its hyperlinks as outdated."
},
{
"file": "set-the-workbooks-builtin-document-property-to-define-the-xlsx-files-version-pro.cs",
"title": "Set the workbook's built\\u2011in document property to define the XLSX file's version programmatically via the API."
},
{
"file": "set-the-workbooks-language-programmatically-via-its-builtin-document-properties-.cs",
"title": "Set the workbook's language programmatically via its built\\u2011in document properties in the XLSX file."
},
{
"file": "set-up-a-custom-property-named-link-to-content-within-an-xlsx-workbook-using-the.cs",
"title": "Set up a custom property named \\u201clink to content\\u201d within an XLSX workbook using the API."
},
{
"file": "update-the-linksuptodate-builtin-property-of-an-xlsx-workbook-to-reflect-its-cur.cs",
"title": "Update the LinksUpToDate built\\u2011in property of an XLSX workbook to reflect its current link status."
}
],
"required_namespaces": [
"System",
"Aspose.Cells",
"Aspose.Cells.Properties",
"Aspose.Cells.Metadata",
"System.Collections.Generic",
"System.IO",
"System.Globalization",
"Aspose.Cells.Rendering"
],
"key_apis": [
"Program",
"Console.WriteLine",
"CustomDocumentProperties.Add",
"Hyperlinks.Add",
"CustomDocumentProperties.Remove",
"CustomDocumentProperties.Contains",
"DocumentPropertiesDemo",
"DeleteCustomProperties.Run",
"DeleteCustomProperties",
"SetDocumentVersion",
"RemoveAllCustomDocumentProperties.Run",
"RemoveAllCustomDocumentProperties",
"SetLinksUpToDateFalse",
"SetWorkbookLanguage",
"CustomDocumentProperties.AddLinkToContent"
]
},
{
"name": "encryption-and-protection",
"file_count": 96,
"examples": [
{
"file": "add-an-extra-digital-signature-to-the-provided-xlsx-workbook-preserving-existing.cs",
"title": "Add an extra digital signature to the provided XLSX workbook, preserving existing content and formatting."
},
{
"file": "add-or-remove-password-protection-on-an-xlsx-workbook-programmatically-using-app.cs",
"title": "Add or remove password protection on an XLSX workbook programmatically using appropriate .NET APIs."
},
{
"file": "apply-a-robust-encryption-algorithm-to-protect-xlsx-files-ensuring-data-confiden.cs",
"title": "Apply a robust encryption algorithm to protect XLSX files, ensuring data confidentiality and integrity."
},
{
"file": "apply-aes-encryption-and-assign-a-password-to-xlsx-workbooks-to-restrict-unautho.cs",
"title": "Apply AES encryption and assign a password to XLSX workbooks to restrict unauthorized access."
},
{
"file": "apply-and-remove-protection-on-the-workbook-structure-of-an-xlsx-file-using-appr.cs",
"title": "Apply and remove protection on the workbook structure of an XLSX file using appropriate API calls."
},
{
"file": "apply-and-remove-worksheet-protection-in-an-xlsx-file-using-the-provided-api-met.cs",
"title": "Apply and remove worksheet protection in an XLSX file using the provided API methods."
},
{
"file": "apply-encryption-to-an-xlsx-workbook-and-subsequently-decrypt-it-ensuring-data-i.cs",
"title": "Apply encryption to an XLSX workbook and subsequently decrypt it, ensuring data integrity throughout the process."
},
{
"file": "apply-or-remove-password-protection-on-a-shared-xlsx-workbook-to-control-access-.cs",
"title": "Apply or remove password protection on a shared XLSX workbook to control access as required."
},
{
"file": "apply-or-remove-workbook-structural-protection-on-xlsx-files-programmatically-us.cs",
"title": "Apply or remove workbook structural protection on XLSX files programmatically using the provided API."
},
{
"file": "apply-or-remove-workbook-structure-protection-on-an-xlsx-file-programmatically-e.cs",
"title": "Apply or remove workbook structure protection on an XLSX file programmatically, ensuring structural integrity and edit permissions."
},
{
"file": "apply-password-protection-to-an-input-xlsx-workbook-using-encryption-to-secure-i.cs",
"title": "Apply password protection to an input XLSX workbook using encryption to secure its contents."
},
{
"file": "apply-password-protection-to-an-ods-workbook-generated-from-an-input-xlsx-file-u.cs",
"title": "Apply password protection to an ODS workbook generated from an input XLSX file using .NET encryption APIs."
},
{
"file": "apply-password-protection-to-an-xlsx-workbook-and-subsequently-remove-it-to-allo.cs",
"title": "Apply password protection to an XLSX workbook and subsequently remove it to allow unrestricted access."
},
{
"file": "apply-password-protection-to-an-xlsx-workbook-to-encrypt-its-contents-and-restri.cs",
"title": "Apply password protection to an XLSX workbook to encrypt its contents and restrict unauthorized access."
},
{
"file": "apply-password-protection-to-an-xlsx-workbook-to-restrict-editing-opening-or-for.cs",
"title": "Apply password protection to an XLSX workbook to restrict editing, opening, or formatting operations."
},
{
"file": "apply-password-protection-to-an-xlsx-workbook-using-openoffice-calc-to-restrict-.cs",
"title": "Apply password protection to an XLSX workbook using OpenOffice Calc to restrict unauthorized access."
},
{
"file": "apply-password-protection-to-worksheets-in-an-xlsx-workbook-and-later-remove-it-.cs",
"title": "Apply password protection to worksheets in an XLSX workbook and later remove it programmatically."
},
{
"file": "apply-protection-to-a-worksheet-within-the-provided-xlsx-file-restricting-editin.cs",
"title": "Apply protection to a worksheet within the provided XLSX file, restricting editing and formatting operations."
},
{
"file": "apply-protection-to-the-workbook-structure-of-an-input-xlsx-file-to-prevent-unau.cs",
"title": "Apply protection to the workbook structure of an input XLSX file to prevent unauthorized modifications."
},
{
"file": "apply-write-protection-to-a-shared-xlsx-workbook-to-restrict-modifications-while.cs",
"title": "Apply write protection to a shared XLSX workbook to restrict modifications while preserving sharing settings."
},
{
"file": "apply-write-protection-to-an-input-xlsx-workbook-while-setting-the-author-metada.cs",
"title": "Apply write protection to an input XLSX workbook while setting the author metadata property."
},
{
"file": "apply-write-protection-to-an-xlsx-file-and-assign-the-specified-author-to-the-pr.cs",
"title": "Apply write protection to an XLSX file and assign the specified author to the protection settings."
},
{
"file": "configure-and-apply-a-strong-encryption-algorithm-to-protect-an-input-xlsx-workb.cs",
"title": "Configure and apply a strong encryption algorithm to protect an input XLSX workbook file."
},
{
"file": "create-a-workbook-apply-protection-with-sharing-enabled-and-save-the-result-as-a.cs",
"title": "Create a workbook, apply protection with sharing enabled, and save the result as an XLSX file."
},
{
"file": "decrypt-an-encrypted-ods-file-using-net-and-convert-the-output-to-xlsx-format.cs",
"title": "Decrypt an encrypted ODS file using\\u202f.NET and convert the output to XLSX format."
},
{
"file": "decrypt-an-ods-file-by-loading-it-with-loadoptionspassword-set-and-clearing-work.cs",
"title": "Decrypt an ODS file by loading it with LoadOptions.Password set and clearing WorkbookSettings.Password (XLSX)."
},
{
"file": "decrypt-an-xlsx-workbook-using-the-librarys-decryption-api-while-maintaining-dat.cs",
"title": "Decrypt an XLSX workbook using the library's decryption API while maintaining data integrity and preserving original formatting."
},
{
"file": "determine-if-the-supplied-xlsx-file-conforms-to-the-encrypted-ooxml-specificatio.cs",
"title": "Determine if the supplied XLSX file conforms to the encrypted OOXML specification and report its encryption status."
},
{
"file": "determine-whether-an-xlsx-workbook-is-passwordprotected-for-modifications-and-va.cs",
"title": "Determine whether an XLSX workbook is password\\u2011protected for modifications and validate the provided password."
},
{
"file": "determine-whether-the-supplied-xlsx-workbook-is-encrypted-and-retrieve-its-encry.cs",
"title": "Determine whether the supplied XLSX workbook is encrypted and retrieve its encryption status programmatically."
},
{
"file": "encrypt-an-input-xlsx-file-by-assigning-a-password-to-protect-its-contents-secur.cs",
"title": "Encrypt an input XLSX file by assigning a password to protect its contents securely."
},
{
"file": "encrypt-an-ods-spreadsheet-using-the-net-api-applying-password-protection-to-sec.cs",
"title": "Encrypt an ODS spreadsheet using the .NET API, applying password protection to secure the file."
},
{
"file": "encrypt-an-ods-workbook-by-loading-it-assigning-workbooksettingspassword-then-sa.cs",
"title": "Encrypt an ODS workbook by loading it, assigning WorkbookSettings.Password, then saving the file as XLSX."
},
{
"file": "encrypt-an-xlsx-workbook-file-using-microsoft-excels-standard-encryption-to-prot.cs",
"title": "Encrypt an XLSX workbook file using Microsoft Excel\\u2019s standard encryption to protect its contents."
},
{
"file": "encrypt-an-xlsx-workbook-using-a-password-to-protect-its-contents-from-unauthori.cs",
"title": "Encrypt an XLSX workbook using a password to protect its contents from unauthorized access."
},
{
"file": "encrypt-an-xlsx-workbook-using-net-apis-specifying-password-protection-and-encry.cs",
"title": "Encrypt an XLSX workbook using .NET APIs, specifying password protection and encryption settings for the file."
},
{
"file": "identify-and-verify-the-file-format-of-a-supplied-xlsx-workbook-using-the-api.cs",
"title": "Identify and verify the file format of a supplied XLSX workbook using the API."
},
{
"file": "identify-the-format-of-an-input-xlsx-file-and-determine-whether-it-is-encrypted.cs",
"title": "Identify the format of an input XLSX file and determine whether it is encrypted."
},
{
"file": "identify-typical-use-cases-for-processing-xlsx-worksheets-within-net-application.cs",
"title": "Identify typical use cases for processing XLSX worksheets within .NET applications using the API."
},
{
"file": "implement-encryption-and-decryption-capabilities-for-ods-spreadsheet-files-suppo.cs",
"title": "Implement encryption and decryption capabilities for ODS spreadsheet files, supporting the XLSX format as an alternative."
},
{
"file": "implement-encryption-and-decryption-functionality-for-xlsx-workbooks-ensuring-se.cs",
"title": "Implement encryption and decryption functionality for XLSX workbooks, ensuring secure handling of spreadsheet data."
},
{
"file": "implement-encryption-and-decryption-of-ods-files-accepting-xlsx-data-as-the-sour.cs",
"title": "Implement encryption and decryption of ODS files, accepting XLSX data as the source format."
},
{
"file": "implement-functionality-to-apply-and-remove-protection-on-shared-xlsx-workbooks-.cs",
"title": "Implement functionality to apply and remove protection on shared XLSX workbooks using appropriate APIs."
},
{
"file": "implement-functionality-to-apply-password-protection-to-an-xlsx-workbook-and-sub.cs",
"title": "Implement functionality to apply password protection to an XLSX workbook and subsequently remove it programmatically."
},
{
"file": "insert-a-digital-signature-line-into-an-xlsx-workbook-using-the-net-spreadsheet-.cs",
"title": "Insert a digital signature line into an XLSX workbook using the .NET spreadsheet library."
},
{
"file": "insert-a-signature-line-into-the-provided-xlsx-workbook-ensuring-correct-placeme.cs",
"title": "Insert a signature line into the provided XLSX workbook, ensuring correct placement and formatting."
},
{
"file": "invoke-save-as-and-enable-the-save-with-password-option-when-exporting-to-xlsx-f.cs",
"title": "Invoke Save As and enable the Save With Password option when exporting to XLSX format."
},
{
"file": "programmatically-add-or-remove-password-protection-on-a-shared-xlsx-workbook-to-.cs",
"title": "Programmatically add or remove password protection on a shared XLSX workbook to control access."
},
{
"file": "programmatically-generate-read-and-modify-microsoft-excel-xlsx-workbooks-using-t.cs",
"title": "Programmatically generate, read, and modify Microsoft Excel (XLSX) workbooks using the provided .NET API."
},
{
"file": "programmatically-protect-the-workbook-structure-of-an-xlsx-file-using-the-net-ap.cs",
"title": "Programmatically protect the workbook structure of an XLSX file using the .NET API to prevent unauthorized modifications."
},
{
"file": "provide-example-source-code-illustrating-creation-and-manipulation-of-xlsx-sprea.cs",
"title": "Provide example source code illustrating creation and manipulation of XLSX spreadsheets using the .NET API."
},
{
"file": "remove-worksheet-protection-from-the-specified-input-xlsx-file-allowing-subseque.cs",
"title": "Remove worksheet protection from the specified input XLSX file, allowing subsequent modifications via API."
},
{
"file": "select-an-encryption-algorithm-for-an-xlsx-workbook-and-apply-it-during-file-sav.cs",
"title": "Select an encryption algorithm for an XLSX workbook and apply it during file saving."
},
{
"file": "select-the-desired-encryption-algorithm-for-an-xlsx-workbook-and-validate-the-pr.cs",
"title": "Select the desired encryption algorithm for an XLSX workbook and validate the provided password before saving."
},
{
"file": "set-the-workbook-author-metadata-concurrently-with-applying-write-protection-to-.cs",
"title": "Set the workbook author metadata concurrently with applying write protection to an XLSX file."
},
{
"file": "set-up-signature-line-attributes-for-an-input-xlsx-workbook-including-signer-det.cs",
"title": "Set up signature line attributes for an input XLSX workbook, including signer details and visual appearance."
},
{
"file": "specify-a-modification-password-for-an-xlsx-workbook-to-restrict-unauthorized-ed.cs",
"title": "Specify a modification password for an XLSX workbook to restrict unauthorized editing and enforce security."
},
{
"file": "validate-the-digital-signature-of-an-xlsx-workbook-before-processing-to-ensure-i.cs",
"title": "Validate the digital signature of an XLSX workbook before processing to ensure integrity and authenticity."
},
{
"file": "validate-the-password-of-an-encrypted-xlsx-workbook-and-report-whether-decryptio.cs",
"title": "Validate the password of an encrypted XLSX workbook and report whether decryption is successful."
},
{
"file": "validate-the-password-of-encrypted-xlsx-and-ods-workbooks-confirming-access-righ.cs",
"title": "Validate the password of encrypted XLSX and ODS workbooks, confirming access rights before processing."
},
{
"file": "validate-the-password-protecting-an-encrypted-xlsx-workbook-and-confirm-whether-.cs",
"title": "Validate the password protecting an encrypted XLSX workbook and confirm whether access is authorized for processing."
},
{
"file": "validate-the-provided-password-for-an-incoming-xlsx-workbook-to-ensure-authorize.cs",
"title": "Validate the provided password for an incoming XLSX workbook to ensure authorized access and proper decryption."
},
{
"file": "verify-the-modification-password-of-an-input-xlsx-file-to-ensure-authorized-edit.cs",
"title": "Verify the modification password of an input XLSX file to ensure authorized editing permissions."
},
{
"file": "apply-an-xades-digital-signature-to-an-xlsx-workbook-using-the-appropriate-api-m.cs",
"title": "Remove protection from an input XLSX workbook programmatically, enabling unrestricted read and write operations."
},
{
"file": "apply-an-additional-digital-signature-to-a-previously-signed-xlsx-workbook-witho.cs",
"title": "Decrypt an encrypted XLSX workbook to enable subsequent data manipulation, analysis, and modification operations."
},
{
"file": "identify-the-file-format-of-encrypted-office-open-xml-ooxml-spreadsheets-within-.cs",
"title": "Decrypt an ODS workbook supplied in XLSX format, restoring its original unprotected state for further processing."
},
{