Table of Contents

Class OverlayManagerCallbackEventArgs

Namespace
VisioForge.Core.Types.X.VideoEffects
Assembly
VisioForge.Core.dll

Overlay Manager callback args. Implements the EventArgs.

public class OverlayManagerCallbackEventArgs : EventArgs

Inheritance

Inherited Members

Properties

Context

Gets the context.

public Context Context { get; }

Property Value

Context

Duration

Gets the duration.

public TimeSpan Duration { get; }

Property Value

TimeSpan

Timestamp

Gets the timestamp.

public TimeSpan Timestamp { get; }

Property Value

TimeSpan

Methods

DrawImage(object, int, int, int?, int?)

Draws an image at the specified position. The image will not be disposed by this method. Supported image types: System.Drawing.Bitmap, SKBitmap, Android.Graphics.Bitmap, UIKit.UIImage, AppKit.NSImage.

public void DrawImage(object image, int x, int y, int? width = null, int? height = null)

Parameters

image object

The image to draw. Will not be disposed.

x int

The X coordinate.

y int

The Y coordinate.

width int?

Optional width. If not specified, uses the image's original width.

height int?

Optional height. If not specified, uses the image's original height.

See Also