@@ -86,7 +86,7 @@ Data from the clipboard is pasted into the range defined by `rangeSelection`. Th
8686
8787The repetition of elements follows the order of copying, starting from the first cell.
8888
89- ### Copying cells depending on the column type
89+ ### Copying/pasting cells depending on the column type
9090
9191Below you'll find the details on copying/pasting data depending on the type of a column.
9292
@@ -163,7 +163,7 @@ These functions provide flexible control over how data is processed before copyi
163163
164164### Examples
165165
166- ** Numbers with a mask**
166+ ** Copying numbers with a mask**
167167
168168This example demonstrates how to copy numbers while preserving the mask (e.g., ` "1,234.56" ` instead of ` 1234.56 ` ).
169169
@@ -178,7 +178,7 @@ copyModifier: (value, cell, cut) => {
178178}
179179~~~
180180
181- ** Combobox with displayed text**
181+ ** Copying the displayed text of the Combobox option **
182182
183183This example shows how to copy the combobox option text (` "Option 1" ` ) instead of the ` id ` (` "1" ` ).
184184
@@ -193,7 +193,7 @@ copyModifier: (value, cell, cut) => {
193193}
194194~~~
195195
196- ** Dates with validation**
196+ ** Pasting dates with validation**
197197
198198This example demonstrates how to transform a date from ` "11/04/2025" ` to ` "2025-04-11" ` during pasting and ensure it is valid.
199199
@@ -215,7 +215,7 @@ pasteModifier: (value, cell) => {
215215}
216216~~~
217217
218- ** PatternMask during copying**
218+ ** Removing ` patternMask ` during copying**
219219
220220This example shows how to remove mask formatting (e.g., copy ` "1234567890" ` instead of ` "+1 (234) 567-89-0" ` ).
221221
0 commit comments