Espacio de nombres: CodiumSDK.CPL.HTMLTags
Ensamblado: CodiumSDK.dll

Class that represent a “meter” tag. The meter tag defines a scalar measurement within a known range, or a fractional value. This is also known as a gauge.
C#
public class Meter : CodiumSDK.CPL.HTMLTagBase

Métodos

NombreDescripción
GetAttribute(name)Get Attribute

Constructores

NombreDescripción
Meter()Meter
Meter(program, high, low, max, min, optimum, value, innerHTML, style, className, id, title)Constructor for meter

GetAttribute(name)

Get Attribute
C#
public CodiumSDK.CPL.HTMLAttribute GetAttribute(System.String name);

Regresa

CodiumSDK.CPL.HTMLAttribute

Parámetros

NombreTipoDescripción
nameSystem.StringName of the Atrribute

Meter()

Meter
C#
public Meter();

Meter(program, high, low, max, min, optimum, value, innerHTML, style, className, id, title)

Constructor for meter
C#
public Meter(CodiumSDK.CPL.ProgramDefinition program, System.Int32 high, System.Int32 low, System.Int32 max, System.Int32 min, System.Int32 optimum, System.Decimal value, System.String innerHTML, System.String style, System.String className, System.String id, System.String title);

Parámetros

NombreTipoDescripción
programCodiumSDK.CPL.ProgramDefinitionProgram Definition
highSystem.Int32Specifies the range that is considered to be a high value
lowSystem.Int32Specifies the range that is considered to be a low value
maxSystem.Int32Specifies the maximum value of the range
minSystem.Int32Specifies the minimum value of the range. Default value is 0
optimumSystem.Int32Specifies what value is the optimal value for the gauge
valueSystem.DecimalRequired. Specifies the current value of the gauge
innerHTMLSystem.StringInner HTML
styleSystem.StringSpecifies an inline CSS style for an element
classNameSystem.StringSpecifies one or more classnames for an element (refers to a class in a style sheet)
idSystem.StringSpecifies a unique id for an element
titleSystem.StringSpecifies extra information about an element