Re: Evaluation Questions

pinEdit WP

Evaluation Questions


ChrisMoses 05-13-2006, 1:07
Hi,
I just started evaluating pinEdit WP and have a few general questions:
1. Can I hide the Attribute/Class/Style tabs on the right ?
2. Can I create my own winform based toolbars.  The app will have multiple editors open at the same time, so I would like to display the text editing toolbars with the app's toolbars
3. How do I implement my own context menu ?

If someone could point me in the right direction I would really appreciate it.

Thanks
Chris

Re: Evaluation Questions


Pintexx Support 05-13-2006, 8:33

Hi Chris,

is it right that you use the pinEdit .Net WinForms version ?

pinEdit WP is not available for WinForms right now.
This will come with pinEdit 5.0.

1) The attribute window can be set with

editor.attributearea = false

2) You can hide the editor toolbar by setting

editor.toolbarconfiguration = External

There should be an example in evaluation how to use the editor functions with an external toolbat.

3) This is more difficult but its possible. You have to edit the script in "editor/config/config_event.js".
In the event action you have to call

RaiseControlEvent("MYCODE")

In the .net control you will get a

ToolbarButtonClick Evenet and the parametetr "MYCODE" is passed.

Regards,
Hans-Peter

Re: Evaluation Questions


ChrisMoses 05-14-2006, 12:17
Great, and thanks for the fast reply.  I'll play with it tonight.