Table of Contents

Class ObjectPosition

Namespace
Myra.Graphics2D.UI
Assembly
Myra.dll

Represents the position of an object in a document.

public class ObjectPosition
Inheritance
ObjectPosition
Inherited Members

Constructors

ObjectPosition(object, int, int)

Initializes a new instance of the ObjectPosition class with the specified object and positions.

public ObjectPosition(object obj, int start, int end)

Parameters

obj object

The object.

start int

The starting position.

end int

The ending position.

Properties

End

Gets the ending position.

public int End { get; }

Property Value

int

Object

Gets the object.

public object Object { get; }

Property Value

object

Start

Gets the starting position.

public int Start { get; }

Property Value

int