cancel
Showing results for 
Search instead for 
Did you mean: 

Text View 'stretched horizontally' property

Former Member
0 Kudos

Dear All

How to write the code for 'stretched horizontally' property in textview in dynamically

for matrix lay out

Regards

Dhinakar

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Dear All

My Code listed below

IWDTransparentContainer transAgain=WDTransparentContainer)view.createElement(IWDTransparentContainer.class,"TranF"+index);

transAgain.createLayout(IWDMatrixLayout.class);

theFGroup.setWidth("600Px");

theFGroup.addChild(transAgain);

How to write the code for 'stretched horizontally' property in textview in dynamically

for matrix lay out in the above code itself

Regards

Dhinakar

Former Member
0 Kudos

Dear All

Sorry for my previous mail.

My Code listed below

IWDTransparentContainer transAgain=WDTransparentContainer)view.createElement(IWDTransparentContainer.class,"TranF"+index);

transAgain.createLayout(IWDMatrixLayout.class);

theFGroup.setWidth("600Px");

theFGroup.addChild(transAgain);

How to write the code for 'stretched horizontally' property in "transparent container" in dynamically

for matrix lay out in the above code itself

vijayakhanna_raman
Active Contributor
0 Kudos

Hi Dhinakar,

Write this code

IWDMatrixLayout gl=(IWDMatrixLayout)transAgain.createLayout(IWDMatrixLayout.class);

gl.setStretchedHorizontally(false);

Regards,

Vijay