Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4165
TargetPositionInDockedRow...How can I set this at runtime?
posted

Hello,

I want to use a database to store some key settings regarding a users toolbar. Most important is the position in the docked row, which I can see on the toolbarmodified event, under E.Toolbar.base.nonpublicmemebers.

There I see targetpositionindockedrow. How can I set this at runtime?

 

Thanks.

Parents
No Data
Reply
  • 18495
    posted

    Hello,

    Since that property is under "nonpublicmembers", that means it's either private, protected, or internal, so you can't access it from your code.  However, you can use the DockedColumn property of the Toolbar to determine where the toolbar shows in relation to the other toolbars in the row.  The first toolbar would have a DockedColumn of 0, the second would be 1, etc.

Children