Table of Contents

Interface ITextDrawsComponent.IManagedInterface

Namespace
SampSharp.OpenMp.Core.Api
Assembly
SampSharp.OpenMp.Core.dll

Represents the managed interface implemented by its unmanaged counterpart.

public interface ITextDrawsComponent.IManagedInterface : IUnmanagedInterface
Inherited Members

Methods

Create(Vector2, int)

Creates a new text draw with the specified position and preview model.

ITextDraw Create(Vector2 position, int model)

Parameters

position Vector2

The position of the text draw.

model int

The preview model of the text draw.

Returns

ITextDraw

The created text draw.

Create(Vector2, string)

Creates a new text draw with the specified position and text.

ITextDraw Create(Vector2 position, string text)

Parameters

position Vector2

The position of the text draw.

text string

The text of the text draw.

Returns

ITextDraw

The created text draw.

GetEventDispatcher()

Retrieves the event dispatcher for text draw events.

IEventDispatcher<ITextDrawEventHandler> GetEventDispatcher()

Returns

IEventDispatcher<ITextDrawEventHandler>