Values.ViewFrameSourceRepresents the data being transformed during an action.
type nonrec t = {startColumnIndex : StartColumnIndex.t;The starting index for the range of columns to return in the view frame.
*)columnRange : ColumnRange.t option;The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.
*)startRowIndex : StartRowIndex.t option;The starting index for the range of rows to return in the view frame.
*)rowRange : RowRange.t option;The number of rows to include in the view frame, beginning with the StartRowIndex value.
*)analytics : AnalyticsMode.t option;Controls if analytics computation is enabled or disabled. Enabled by default.
*)}val make :
?columnRange:??? ->
?hiddenColumns:??? ->
?startRowIndex:??? ->
?rowRange:??? ->
?analytics:??? ->
startColumnIndex:StartColumnIndex.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of StartColumnIndex.t
| `List of [> `String of ColumnName.t ] list ])
list ]