Struct WicBitmapPlane
Assembly: JeremyAnsel.DirectX.WinCodec.dll
Syntax
public readonly struct WicBitmapPlane : IEquatable<WicBitmapPlane>
Constructors
|
Edit this page
View Source
Declaration
public WicBitmapPlane(in WicPixelFormatGuid format, Array buffer, uint stride, uint bufferSize)
Parameters
Properties
|
Edit this page
View Source
Buffer
Declaration
public Array Buffer { get; }
Property Value
|
Edit this page
View Source
BufferSize
Declaration
public uint BufferSize { get; }
Property Value
|
Edit this page
View Source
Declaration
public WicPixelFormatGuid Format { get; }
Property Value
|
Edit this page
View Source
Stride
Declaration
public uint Stride { get; }
Property Value
Methods
|
Edit this page
View Source
Equals(WicBitmapPlane)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(WicBitmapPlane other)
Parameters
Type |
Name |
Description |
WicBitmapPlane |
other |
An object to compare with this object.
|
Returns
Type |
Description |
bool |
true if the current object is equal to the other parameter; otherwise, false.
|
|
Edit this page
View Source
Equals(object?)
Indicates whether this instance and a specified object are equal.
Declaration
public override bool Equals(object? obj)
Parameters
Type |
Name |
Description |
object |
obj |
The object to compare with the current instance.
|
Returns
Type |
Description |
bool |
true if obj and this instance are the same type and represent the same value; otherwise, false.
|
Overrides
|
Edit this page
View Source
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type |
Description |
int |
A 32-bit signed integer that is the hash code for this instance.
|
Overrides
Operators
|
Edit this page
View Source
operator ==(WicBitmapPlane, WicBitmapPlane)
Declaration
public static bool operator ==(WicBitmapPlane left, WicBitmapPlane right)
Parameters
Returns
|
Edit this page
View Source
operator !=(WicBitmapPlane, WicBitmapPlane)
Declaration
public static bool operator !=(WicBitmapPlane left, WicBitmapPlane right)
Parameters
Returns
Implements