Application Development and Automation 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: 
Read only

Debugging - Read the value of type ref to DATA variable

Former Member
1,960

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
Read only

Sandra_Rossi
Active Contributor
0 Likes
963

Simply A->X->*

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

Read only

Former Member
0 Likes
963

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.