Class EPLElement
It represents a rendered EPL element.
Inheritance
System.Object
EPLElement
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Neodynamic.SDK.EPLPrinter
Assembly: cs.temp.dll.dll
Syntax
public class EPLElement
Properties
Content
Gets or sets the string content of the element.
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Height
Gets or sets the height of the element in pixels unit.
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
Gets or sets the EPL command name of the element.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Width
Gets or sets the width of the element in pixels unit.
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
X
Gets or sets the x-coordinate of the upper-left corner of the element in pixels unit.
Declaration
public int X { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Y
Gets or sets the y-coordinate of the upper-left corner of the element in pixels unit.
Declaration
public int Y { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |