z

Class PxlRectF

Represents a floating-point rectangle.

Namespace: ImageSdkWrapper Assembly: ImageSdkWrapper.MAUI

Inheritance: object

public class PxlRectF

Constructor

PxlRectF(float, float, float, float)

Initialises a rectangle with explicit edges.

public PxlRectF(float l, float t, float r, float b)

Parameters

  • l (float)
  • t (float)
  • r (float)
  • b (float)

Field

Bottom

Bottom edge coordinate.

public float Bottom

Returns

  • float

Left

Left edge coordinate.

public float Left

Returns

  • float

Right edge coordinate.

public float Right

Returns

  • float

Top

Top edge coordinate.

public float Top

Returns

  • float

Property

Height

Gets the rectangle height.

public float Height { get; }

Returns

  • float

Width

Gets the rectangle width.

public float Width { get; }

Returns

  • float
Top