Class EmfTriVertex
Namespace: Aspose.Imaging.FileFormats.Emf.Emf.Objects
Assembly: Aspose.Imaging.dll (25.2.0)
The TriVertex object specifies color and position information for the definition of a rectangle or triangle vertex.
public sealed class EmfTriVertex : EmfObject
Inheritance
object ← MetaObject ← EmfObject ← EmfTriVertex
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
EmfTriVertex()
public EmfTriVertex()
Properties
Alpha
Gets or sets a 16-bit unsigned integer that specifies the alpha transparency value for the point.
public short Alpha { get; set; }
Property Value
Blue
Gets or sets a 16-bit unsigned integer that specifies the blue color value for the point.
public short Blue { get; set; }
Property Value
Green
Gets or sets a 16-bit unsigned integer that specifies the green color value for the point.
public short Green { get; set; }
Property Value
Red
Gets or sets a 16-bit unsigned integer that specifies the red color value for the point.
public short Red { get; set; }
Property Value
X
Gets or sets a 32-bit signed integer that specifies the horizontal position, in logical units.
public int X { get; set; }
Property Value
Y
Gets or sets a 32-bit signed integer that specifies the vertical position, in logical units.
public int Y { get; set; }