Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Debugging - Read the value of type ref to DATA variable

former_member184741
Active Contributor

Hi Experts,

while debugging a standard code i came across a variable which refers to certain class( let's say A ) and this class A has a instance/private variable (let's say X) which type ref to 'DATA'. In debugging how can I see the value of varialbe 'X'?

thanks

2 REPLIES 2

Sandra_Rossi
Active Contributor
0 Kudos

Simply A->X->*

PS: the debugger allows displaying and changing any private attribute.

Former Member
0 Kudos

Once outside the class, you won't be able to access the private variable using A->X->*

You can double click on A to reach object detail view which will show list of attributes and their respective values.

The "value" column will have value. "Value type" column would be empty for variables and it would have an arrow icon for attributes that refer to DATA.