Table of Contents

Class SparseColorArg

Namespace
ImageMagick
Assembly
Magick.NET-Q8-AnyCPU.dll

Represents an argument for the SparseColor method.

public sealed class SparseColorArg : ISparseColorArg<byte>
Inheritance
SparseColorArg
Implements
ISparseColorArg<byte>
Inherited Members

Constructors

SparseColorArg(double, double, IMagickColor<byte>)

Initializes a new instance of the SparseColorArg class.

public SparseColorArg(double x, double y, IMagickColor<byte> color)

Parameters

x double

The X position.

y double

The Y position.

color IMagickColor<byte>

The color.

Properties

Color

Gets or sets the color.

public IMagickColor<byte> Color { get; set; }

Property Value

IMagickColor<byte>

X

Gets or sets the X position.

public double X { get; set; }

Property Value

double

Y

Gets or sets the Y position.

public double Y { get; set; }

Property Value

double