Skip to Content
0
Former Member
May 31, 2004 at 07:13 PM

Setting window titles through API

30 Views

Right now, the IWDWindow API does not provide a way of setting window titles.

I can solve this problem right now by casting the IWDWindow object into a Window object and calling setTitle on it.

( (Window) newWin ).setTitle( "My Title");

Why is setTitle() not a part of the IWDWindow API?