cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Attribute type

Former Member
0 Kudos

Hi

I am Declaring a Context attribute value of type Say "Name" as String.

Is it possible that can i retrieve the data type of the "Name" at Run Time.

If Possible please How to achieve that...

Thanks In Advance...

Regards

Chandran S

Accepted Solutions (1)

Accepted Solutions (1)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

Hi

Yes you can get the datatype of the Attribute

using

IWDAttributeInfo info = wdContext.node<nodename>().getNodeInfo().getAttribute( "<Name of the attribute>");

String str = info.getgetDataType().getName();

Regards

Abhimanyu L

Answers (0)