DgsTooltipApplyTo

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function applies a DGS tooltip to a DGS element.

Syntax

bool dgsTooltipApplyTo( element tooltip, element targetElement, string text [, string/dx-font font = tooltipFont, number maxWidth = tooltipMaxWidth ] )

Required Arguments

  • tooltip: A DGS tooltip template that you want to use.
  • targetElement: A DGS element that you want to apply the tooltip to.
  • text: A string of the text that will be show.

Optional Arguments

  • tooltipFont: A string/dx-font of the text font. Font of tooltip template will be used if not specified.
  • maxWidth: A number of the max width of the tooltip that can show. MaxWidth of tooltip template will be used if not specified.

Returns

Returns true if successful, false otherwise.

Example

DGS = exports.dgs --get exported functions from dgs

local label = DGS:dgsCreateLabel(200,200,200,50,"test tooltip",false)
local tooltip = DGS:dgsCreateToolTip()
DGS:dgsTooltipApplyTo(tooltip,label,"this a demo tooltip")

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips