Page 1 of 1

getting the grdSOH row key in c#

PostPosted: Wed Oct 29, 2025 9:21 am
by DannyC
In VB.net you can use
Code: Select all
Dim key As String = grdSOH.GridText("Key", Row)
to get the key as a string.

The .GridText property doesn't exist in c#.
Whats the equivalent?

Re: getting the grdSOH row key in c#  Topic is solved

PostPosted: Wed Oct 29, 2025 10:11 am
by Scott.Pearce
Code: Select all
string key = grdSOH.get_GridText("Key", Row).ToString();