|
Group: Forum Members
Posts: 35,
Visits: 32
|
Hi Gauri,
Tooltips and cursors are applied consistently to both WinForm and WebForm diagrams. They are implemented as interactivity attributes of each shape. The following code adds a tooltip to a shape:
NTooltipAttribute tooltipAttribute = new NTooltipAttribute("Some tooltip"); shape.Style.InteractivityStyle.InteractivityAttributes.Add(tooltipAttribute);
Take a look at the following topics: Framework > Presentation Layer > Graphics > Interactivity Style > Tooltip Framework > Presentation Layer > Graphics > Interactivity Style > Cursor
Best regards, Ivo
|