Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
230
GroupByRow, how to get its value/name
posted

I have a variable representing a row.  row.GroupByRow returns true.  I want to be able to get the name of said row, this will alow me to apply certain logic to its children.

 

Thanks.

Parents
No Data
Reply
  • 8680
    posted

    IIRC, rows don't have a .Name property.

    When I need to identify what kind of row I'm dealing with, I usually look at the .Key or .BaseColumnName of .Column(0), or some other known column.

    HTH

Children