DgsPasteHandlerSetEnabled

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

This function enables/disables DGS Paste Handler. This paste handler will enable player to paste (ctrl+v) something with format.

Syntax

bool dgsPasteHandlerSetEnabled( bool state )

Required Arguments

  • state: A bool indicates whether to enable DGS Paste Handler.

Returns

Returns true if it was successfully, false otherwise.

Example

DGS = exports.dgs

DGS:dgsPasteHandlerSetEnabled(true) -- Enable paste handler
image = dgsCreateImage(300,300,200,200,_,false) -- Create an image
DGS:dgsPasteHandlerSetFocused(true) --Focus the paste handler
addEventHandler("onDgsPaste",root,function(data,dataType) -- Need to register this event for receive the pasted thing
	if dataType == "file" then --Whether it is a file?
		local texture = dxCreateTexture(data) --assume it is a texture, just create the texture
		if texture then
			dgsImageSetImage(image,texture) --Apply it on the image
		end
	elseif dataType == "string" then --Whether it is just a string?
		outputChatBox(data) --Just output
	end
end)

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

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips