Skip to content

Commit 29e80c9

Browse files
Put an example of retrieving DataColumn from typed DataTable in "data modification" documentation page
1 parent 7c65d88 commit 29e80c9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/content/data modification.fsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,13 @@ The IntelliSense experience is left a little clunky to retain legacy `DataRow` t
133133
let firstRow = currencyRates.Rows.[0]
134134
firstRow.AverageRate
135135

136+
(**
137+
It is possible to get a reference to the DataColumn object
138+
*)
139+
140+
let averageRateColumn = currencyRates.Columns.AverageRate
141+
142+
136143
(**
137144
The `AddRow` method adds a new row to a table.
138145

0 commit comments

Comments
 (0)