Bind a widget property directly to the DT’s struct’s row member? No. But you could poll it every frame:
But this is an awful idea, wasteful and not too elegant. Instead, you could promote a row to a variable…
…and have a property poll that struct:
But wouldn’t it be simpler to just push in the data into the widget? Push in the struct via an exposed variable and you’re done. Properties can fetch what they need from the struct. You could even have the onInit / Construct do it so it happens only once rather all the time. Or call an event that sets pertinent fields - especially if the plan is to update them later on anyway.