
Espacio de nombres:
CodiumSDK.CPL.HTMLTagsEnsamblado: 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.
Métodos
Constructores
| Nombre | Descripció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
Nombre | Tipo | Descripción |
---|
name | System.String | Name of the Atrribute |
#Meter()

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
Nombre | Tipo | Descripción |
---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
high | System.Int32 | Specifies the range that is considered to be a high value |
low | System.Int32 | Specifies the range that is considered to be a low value |
max | System.Int32 | Specifies the maximum value of the range |
min | System.Int32 | Specifies the minimum value of the range. Default value is 0 |
optimum | System.Int32 | Specifies what value is the optimal value for the gauge |
value | System.Decimal | Required. Specifies the current value of the gauge |
innerHTML | System.String | Inner HTML |
style | System.String | Specifies an inline CSS style for an element |
className | System.String | Specifies one or more classnames for an element (refers to a class in a style sheet) |
id | System.String | Specifies a unique id for an element |
title | System.String | Specifies extra information about an element |