0% found this document useful (0 votes)
2 views

Expression Operators

The document provides a comprehensive overview of expression operators, functions, and constants used in WPF controls. It details various operators for arithmetic, logical, and comparison operations, along with numerous functions for date-time manipulation, mathematical calculations, and string handling. Additionally, it explains how to specify constants in expressions, including string, date-time, and boolean values.

Uploaded by

rogfagundes1809
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Expression Operators

The document provides a comprehensive overview of expression operators, functions, and constants used in WPF controls. It details various operators for arithmetic, logical, and comparison operations, along with numerous functions for date-time manipulation, mathematical calculations, and string handling. Additionally, it explains how to specify constants in expressions, including string, date-time, and boolean values.

Uploaded by

rogfagundes1809
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 14

Expression Operators, Functions and Constants

WPF Controls > Common


Concepts > Expressions > Expression Operators, Functions
and Constants
This page lists operators and functions supported
by expressions. It also provides information on how constants
can be specified in expressions.

Operators
Operat
Description Example
or

+ Adds the value of one numeric expression to [FirstName] + ' ' +


another or concatenates two strings. [LastName]
[UnitPrice] + 4

- Finds the difference between two numbers. [Price1] - [Price2]

* Multiplies the value of two expressions. [Quantity] *


[UnitPrice] * (1 -
[BonusAmount])

/ Divides the first operand by the second. [Quantity] / 2

% Returns the remainder (modulus) obtained by [Quantity] % 3


dividing one numeric expression into another.

| Compares each bit of its first operand to the [Flag1] | [Flag2]


corresponding bit of its second operand. If either bit
is 1, the corresponding result bit is set to 1.
Otherwise, the corresponding result bit is set to 0.

& Performs a bitwise logical AND operation between [Flag] & 10


two integer values.

^ Performs a logical exclusion on two Boolean [Flag1] ^ [Flag2]


expressions or a bitwise exclusion on two numeric
expressions.

== Returns true if both operands have the same value; [Quantity] == 10


otherwise, it returns false.

!= Returns true if the operands do not have the same [Country] !=


value; otherwise, it returns false. 'France'

< Less than operator. Used to compare expressions. [UnitPrice] < 20

<= Less than or equal to operator. Used to compare [UnitPrice] <= 20


expressions.
>= Greater than or equal to operator. Used to compare [UnitPrice] > 30
expressions.

> Greater than operator. Used to compare [UnitPrice] >= 30


expressions.

In (,,,) Tests for the existence of a property in an object. [Country] In ('USA',


'UK', 'Italy')

Like Compares a string against a pattern. If the value of [Name] Like 'An%'
the string matches the pattern, result is true. If the
string does not match the pattern, result is false. If
both string and pattern are empty strings, the
result is true.

Between Specifies a range to test. Returns true if a value is [Quantity] Between


(,) greater than or equal to the first operand and less (10, 20)
than or equal to the second operand.

And Performs a logical conjunction on two expressions. [InStock] And


([ExtendedPrice]>
100)

Or Performs a logical disjunction on two Boolean [Country]=='USA' Or


expressions. [Country]=='UK'

Not Performs logical negation on an expression. Not [InStock]

Functions
Date-time Functions
Function Description Example

AddDays(DateTime, Returns a date-time value AddDays([OrderDate], 30)


DaysCount) that is the specified number
of days away from the
specified DateTime.

AddHours(DateTime, Returns a date-time value AddHours([StartTime], 2)


HoursCount) that is the specified number
of hours away from the
specified DateTime.

AddMilliSeconds(DateTime, Returns a date-time value AddMilliSeconds(([StartTim


MilliSecondsCount) that is the specified number e], 5000))
of milliseconds away from
the specified DateTime.

AddMinutes(DateTime, Returns a date-time value AddMinutes([StartTime],


MinutesCount) that is the specified number 30)
of minutes away from the
specified DateTime.
AddMonths(DateTime, Returns a date-time value AddMonths([OrderDate], 1)
MonthsCount) that is the specified number
of months away from the
specified DateTime.

AddSeconds(DateTime, Returns a date-time value AddSeconds([StartTime],


SecondsCount) that is the specified number 60)
of seconds away from the
specified DateTime.

AddTicks(DateTime, Returns a date-time value AddTicks([StartTime],


TicksCount) that is the specified number 5000)
of ticks away from the
specified DateTime.

AddTimeSpan(DateTime, Returns a date-time value AddTimeSpan([StartTime],


TimeSpan) that is away from the [Duration])
specified DateTime for the
given TimeSpan.

AddYears(DateTime, Returns a date-time value AddYears([EndDate], -1)


YearsCount) that is the specified number
of years away from the
specified DateTime.

GetDate(DateTime) Extracts a date from the GetDate([OrderDateTime])


defined DateTime.

GetDay(DateTime) Extracts a day from the GetDay([OrderDate])


defined DateTime.

GetDayOfWeek(DateTime) Extracts a day of the week GetDayOfWeek([OrderDate


from the defined DateTime. ])

GetDayOfYear(DateTime) Extracts a day of the year GetDayOfYear([OrderDate]


from the defined DateTime. )

GetHour(DateTime) Extracts an hour from the GetHour([StartTime])


defined DateTime.

GetMilliSecond(DateTime) Extracts milliseconds from GetMilliSecond([StartTime]


the defined DateTime. )

GetMinute(DateTime) Extracts minutes from the GetMinute([StartTime])


defined DateTime.

GetMonth(DateTime) Extracts a month from the GetMonth([StartTime])


defined DateTime.

GetSecond(DateTime) Extracts seconds from the GetSecond([StartTime])


defined DateTime.

GetTimeOfDay(DateTime) Extracts the time of the day GetTimeOfDay([StartTime]


from the defined DateTime,
in ticks. )

GetYear(DateTime) Extracts a year from the GetYear([StartTime])


defined DateTime.

Now() Returns the current system AddDays(Now(), 5)


date and time.

Today() Returns the current date. AddMonths(Today(), 1)


Regardless of the actual
time, this function returns
midnight of the current date.

UtcNow() Returns the current system AddDays(UtcNow(), 7)


date and time that is
expressed as Coordinated
Universal Time (UTC).

Logical Functions
Function Description Example

Iif(Expression, Returns either TruePart or Iif([Quantity>=10], 10, 0 )


TruePart, FalsePart) FalsePart, depending on the
evaluation of the Boolean
Expression.

IsNull(Value) Returns True if the specified IsNull([OrderDate])


Value is NULL.

IsNull(Value1, Returns Value1 if it is not set to IsNull([ShipDate],


Value2) NULL; otherwise, Value2 is [RequiredDate])
returned.

IsNullOrEmpty(String) Returns True if the specified IsNullOrEmpty([ProductNa


String object is NULL or an empty me])
string; otherwise, False is
returned.

Math Functions
Function Description Example

Abs(Value) Returns the absolute positive value of the Abs(1 - [Discount])


given numeric expression.

Acos(Value) Returns the arccosine of a number (the angle, Acos([Value])


in radians, whose cosine is the given float
expression).

Asin(Value) Returns the arcsine of a number (the angle, in Asin([Value])


radians, whose sine is the given float
expression).
Atn(Value) Returns the arctangent of a number (the angle, Atn([Value])
in radians, whose tangent is the given float
expression).

Atn2(Value1, Returns the angle, whose tangent is the Atn2([Value1],


Value2) quotient of two specified numbers, in radians. [Value2])

BigMul(Value1, Returns an Int64 containing the full product of BigMul([Amount],


Value2) two specified 32-bit numbers. [Quantity])

Ceiling(Value) Returns the smallest integer that is greater Ceiling([Value])


than or equal to the given numeric expression.

Cos(Value) Returns the cosine of the angle defined in Cos([Value])


radians.

Cosh(Value) Returns the hyperbolic cosine of the angle Cosh([Value])


defined in radians.

Exp(Value) Returns the exponential value of the given Exp([Value])


float expression.

Floor(Value) Returns the largest integer less than or equal Floor([Value])


to the given numeric expression.

Log(Value) Returns the natural logarithm of a specified Log([Value])


number.

Log(Value, Returns the logarithm of a specified number in Log([Value], 2)


Base) a specified Base.

Log10(Value) Returns the base 10 logarithm of a specified Log10([Value])


number.

Power(Value, Returns a specified number raised to a Power([Value], 3)


Power) specified power.

Rnd() Returns a random number that is less than 1, Rnd()*100


but greater than or equal to zero.

Round(Value) Rounds the given value to the nearest integer. Round([Value])

Sign(Value) Returns the positive (+1), zero (0), or negative Sign([Value])


(-1) sign of the given expression.

Sin(Value) Returns the sine of the angle, defined in Sin([Value])


radians.

Sinh(Value) Returns the hyperbolic sine of the angle Sinh([Value])


defined in radians.

Sqr(Value) Returns the square root of a given number. Sqr([Value])


Tan(Value) Returns the tangent of the angle defined in Tan([Value])
radians.

Tanh(Value) Returns the hyperbolic tangent of the angle Tanh([Value])


defined in radians.

String Functions
Function Description Example

Ascii(String) Returns the ASCII code value of the Ascii('a')


leftmost character in a character
expression.

Char(Number) Converts integerASCIICode to a Char(65) + Char(51)


character.

CharIndex(String1, Returns the starting position of String1 CharIndex('e',


String2) within String2, beginning from the zero 'devexpress')
character position to the end of a string.

CharIndex(String1, Returns the starting position of String1 CharIndex('e',


String2, within String2, beginning from the 'devexpress', 2)
StartLocation) StartLocation character position to the
end of a string.

Concat(String1, ... , Returns a string value containing the Concat('A', ')',


StringN) concatenation of the current string with [ProductName])
any additional strings.

Insert(String1, Inserts String2 into String1 at the Insert([Name], 0,


StartPosition, position specified by StartPositon 'ABC-')
String2)

Len(Value) Returns an integer containing either the Len([Description])


number of characters in a string or the
nominal number of bytes required to
store a variable.

Lower(String) Returns the String in lowercase. Lower([ProductName]


)

PadLeft(String, Left-aligns characters in the defined


Length) string, padding its left side with white
space characters up to a specified total
length.

PadLeft(String, Left-aligns characters in the defined PadLeft([Name], 30,


Length, Char) string, padding its left side with the '<')
specified Char up to a specified total
length.

PadRight(String, Right-aligns characters in the defined PadRight([Name], 30)


Length) string, padding its left side with white
space characters up to a specified total
length.

PadRight(String, Right-aligns characters in the defined PadRight([Name], 30,


Length, Char) string, padding its left side with the '>')
specified Char up to a specified total
length.

Remove(String, Deletes a specified number of Remove([Name], 0,


StartPosition, characters from this instance, beginning 3)
Length) at a specified position.

Replace(String, Returns a copy of String1, in which Replace([Name], 'The


SubString2, String3) SubString2 has been replaced with ', ''
String3.

Reverse(String) Reverses the order of elements within a Reverse([Name])


string.

Substring(String, Retrieves a substring from String. The Substring([Descriptio


StartPosition, substring starts at StartPosition and has n], 2, 3)
Length) the specified Length..

Substring(String, Retrieves a substring from String. The Substring([Descriptio


StartPosition) substring starts at StartPosition. n], 2)

ToStr(Value) Returns a string representation of an ToStr([ID])


object.

Trim(String) Removes all leading and trailing SPACE Trim([ProductName])


characters from String.

Upper(String) Returns String in uppercase. Upper([ProductName]


)

Constants
Constant Description Description

String constants String constants must be wrapped in apostrophes. [Country] ==

Date-time Date-time constants must be wrapped in '#'. [OrderDate] >


constants #1/1/2009#

True Represents the Boolean True value. [InStock] ==

False Represents the Boolean False value. [InStock] ==

? Represents a null reference, one that does not refer to any [Region] != ?
object.
Operadores de expressão, funções e constante
WPF controles > Conceitos
Comuns > Expressões > Operadores de Expressão, funções e
constantes
Esta página lista os operadores e funções suportadas
por expressões . Ele também fornece informações sobre como
constantes podem ser especificados em expressões.

Operadores
Operad
Descrição Exemplo
or

+ Adiciona o valor de uma expressão numérica para [Nome] + '' +


outro ou concatena duas strings. [LastName]
[UnitPrice] + 4

- Localiza a diferença entre dois números. [Preço1] - [Price2]

* Multiplica o valor de duas expressões. [Quantidade] *


[PreçoUnitário] * (1 -
[BonusAmount])

/ Divide o primeiro operando pelo segundo. [Quantidade] / 2

% Retorna o resto (módulo) obtido dividindo-se uma [Quantidade] de 3%


expressão numérica em outra.

| Compara cada bit de o primeiro operando com o bit [Flag1] | [Flag2]


correspondente de seu segundo operando. Se um
bit é 1, o bit de resultado correspondente é
definido como 1. Caso contrário, o bit de resultado
correspondente é definido como 0.

& Executa uma operação lógica AND bit a bit entre [Bandeira] e 10
dois valores inteiros.

^ Executa uma exclusão lógica em duas expressões [Flag1] ^ [Flag2]


booleanas ou uma exclusão bit a bit em duas
expressões numéricas.

== Retorna true se ambos os operandos têm o mesmo [Quantidade] == 10


valor, caso contrário, retorna false.

!= Retorna verdadeiro se os operandos não têm o [País]! = 'França'


mesmo valor, caso contrário, retorna false.

< Menos de operador. Usado para comparar [PreçoUnitário] <20


expressões.
<= Menos do que ou igual ao operador. Usado para [PreçoUnitário] <=
comparar expressões. 20

>= Maior do que ou igual ao operador. Usado para [PreçoUnitário]> 30


comparar expressões.

> Maior do que operador. Usado para comparar [PreçoUnitário]> =


expressões. 30

Em (,,,) Testes para a existência de uma propriedade em [País] Em ("EUA",


um objeto. "UK ',' Itália ')

Como Compara uma seqüência de caracteres contra um [Nome] Como 'Uma


padrão. Se o valor da cadeia corresponde ao %'
padrão, o resultado é verdadeiro. Se a seqüência
não correspondem ao padrão, o resultado é
falso. Se ambos string e padrão são strings vazias,
o resultado é verdadeiro.

Entre (,) Especifica um intervalo para testar. Retorna [Quantidade] Entre


verdadeiro se um valor for maior do que ou igual (10, 20)
ao primeiro operando e inferior ou igual ao
segundo operando.

E Realiza uma conjunção lógica em duas expressões. [InStock] E


([ExtendedPrice]>
100)

Ou Realiza uma disjunção lógica em duas expressões [País] == 'EUA' Or


Boolean. [País] == 'UK'

Não Realiza uma negação lógica em uma expressão. Não [InStock]

Funções
Data e hora Funções
Função Descrição Exemplo

AddDays (DateTime, Retorna um valor de data e hora que é o AddDays


DaysCount) número especificado de dias longe do ([OrderDate], 30)
especificado DateTime.

AddHours (DateTime, Retorna um valor de data e hora que é o AddHours


HoursCount) número de horas de distância do ([StartTime], 2)
especificado DateTime.

AddMilliSeconds Retorna um valor de data e hora que é o AddMilliSeconds


(DateTime, número especificado de milissegundos (([StartTime],
MilliSecondsCount) longe do especificado DateTime. 5000))

AddMinutes Retorna um valor de data e hora que é o AddMinutes


(DateTime, número especificado de minutos do ([StartTime], 30)
MinutesCount) especificado DateTime.
AddMonths Retorna um valor de data e hora que é o AddMonths
(DateTime, número especificado de meses longe do ([OrderDate], 1)
MonthsCount) especificado DateTime.

AddSeconds Retorna um valor de data e hora que é o AddSeconds


(DateTime, número especificado de segundos de ([StartTime], 60)
SecondsCount) distância do especificado DateTime.

AddTicks (DateTime, Retorna um valor de data e hora que é o AddTicks


TicksCount) número especificado de carrapatos ([StartTime], 5000)
longe do especificado DateTime.

AddTimeSpan Retorna um valor de data e hora que AddTimeSpan


(DateTime, TimeSpan) está longe do DateTime especificado ([StartTime],
para a determinado TimeSpan. [duração])

AddYears (DateTime, Retorna um valor de data e hora que é o AddYears


YearsCount) número especificado de anos longe do ([EndDate], -1)
especificado DateTime.

GetDate (DateTime) Extrai uma data no DateTime definido. GetDate


([OrderDateTime])

GetDay (DateTime) Extrai um dia a partir do DateTime GetDay


definido. ([OrderDate])

GetDayOfWeek Extrai um dia da semana a partir do GetDayOfWeek


(DateTime) DateTime definido. ([OrderDate])

GetDayOfYear Extrai um dia do ano a partir da GetDayOfYear


(DateTime) DateTime definido. ([OrderDate])

GetHour (DateTime) Extrai uma hora do DateTime definido. GetHour


([StartTime])

GetMilliSecond Extrai milissegundos do DateTime GetMilliSecond


(DateTime) definido. ([StartTime])

GetMinute (DateTime) Extrai minutos do DateTime definido. GetMinute


([StartTime])

GetMonth (DateTime) Extrai de um mês a partir do DateTime GetMonth


definido. ([StartTime])

GetSecond (DateTime) Extrai segundos do DateTime definido. GetSecond


([StartTime])

Gettimeofday Extrai a hora do dia a partir do DateTime Gettimeofday


(DateTime) definido, em carrapatos. ([StartTime])

GetYear (DateTime) Extrai um ano a partir da DateTime GetYear


definido. ([StartTime])
Now () Retorna o atual sistema data e tempo. AddDays (Now (),
5)

Hoje () Retorna a data AddMonths (HOJE


atual. Independentemente do tempo (), 1)
real, esta função retorna meia-noite da
data atual.

UtcNow () Retorna o atual sistema data e tempo AddDays (UtcNow


que se expressa como Tempo Universal (), 7)
Coordenado (UTC).

Funções lógicas
Função Descrição Exemplo

IIF (Expression, Retorna truepart ou falsepart, dependendo IIF ([Quantidade> =


truepart, falsepart) da avaliação da expressão booleana. 10], 10, 0)

IsNull (Valor) Retorna True se o valor especificado é IsNull ([OrderDate])


NULL.

IsNull (valor1, Retorna valor1, se não for definido como IsNull ([ShipDate],
valor2) NULL, caso contrário, valor2 é retornado. [DataDeEntrega])

IsNullOrEmpty Retorna True se o objeto String IsNullOrEmpty


(String) especificado é NULL ou uma cadeia vazia, ([ProductName])
caso contrário, FALSE é retornado.

Funções matemáticas
Função Descrição Exemplo

Abs (Valor) Retorna o valor absoluto positivo da expressão Abs (1 -


dado numérico. [Desconto])

Acos (Valor) Retorna o seno de um número (o ângulo, em Acos ([Valor])


radianos, cujo cosseno é a expressão flutuador
dada).

Asin (Valor) Retorna o arco seno de um número (o ângulo, em Asin ([Valor])


radianos, cujo seno é a expressão float dada).

Atn (Valor) Retorna o arco tangente de um número (o ângulo, Atn ([Valor])


em radianos, cuja tangente é a expressão float
dada).

Atn2 (Valor1, Retorna o ângulo, cuja tangente é o quociente de Atn2 ([Valor1],


Valor2) dois números especificados, em radianos. [valor2])

BigMul Retorna um Int64 que contém o produto completo BigMul ([Valor],


(Valor1, de duas especificados números de 32 bits. [Quantidade])
Valor2)
Teto (Valor) Retorna o menor número inteiro que é maior do Teto ([Valor])
que ou igual à expressão dada numérico.

Cos (Valor) Retorna o cosseno do ângulo definido em Cos ([Valor])


radianos.

Cosh (Valor) Retorna o cosseno hiperbólico de um ângulo Cosh ([Valor])


definido em radianos.

Exp (Valor) Retorna o valor exponencial da expressão float Exp ([Valor])


dada.

Pavimento Retorna o maior número inteiro menor ou igual à Pavimento


(Valor) expressão dado numérico. ([Valor])

Log (Valor) Retorna o logaritmo natural de um número Log ([Valor])


especificado.

Entrar (Base, Retorna o logaritmo de um número especificado Log ([Valor], 2)


Valor) em uma base especificada.

Log10 (Valor) Retorna o logaritmo base 10 de um número Log10 ([Valor])


especificado.

Power (Poder, Retorna um número especificado elevado a uma Potência ([Valor],


Valor) potência especificada. 3)

Rnd () Retorna um número aleatório que é inferior a 1, Rnd () * 100


mas maior do que ou igual a zero.

Round (Valor) Arredonda o valor dado para o inteiro mais Round ([Valor])
próximo.

Registe Retorna o positivo (+1), zero (0), ou sinal (-1) Registe-([Valor])


(Valor) negativo da expressão dada.

Sin (Valor) Retorna o seno do ângulo, definido em radianos. Sin ([Valor])

Sinh (Valor) Retorna o seno hiperbólico de um ângulo definido Sinh ([Valor])


em radianos.

Sqr (Valor) Retorna a raiz quadrada de um número dado. Sqr ([Valor])

Tan (Valor) Retorna a tangente do ângulo definido em Tan ([Valor])


radianos.

Tanh (Valor) Retorna a tangente hiperbólica do ângulo definido Tanh ([Valor])


em radianos.

Funções para String


Função Descrição Exemplo
Ascii (String) Retorna o valor do código ASCII do caractere Ascii ('a')
mais à esquerda em uma expressão de
caractere.

Char (Number) Converte integerASCIICode a um Char (65) + Char


personagem. (51)

CharIndex (string1, Retorna a posição inicial de String1 dentro CHARINDEX ('e',


string2) String2, a partir da posição do caractere zero 'DevExpress')
ao fim de uma string.

CharIndex (string1, Retorna a posição inicial de String1 dentro CHARINDEX ('e',


string2, String2, a partir da posição do caractere 'DevExpress ", 2)
StartLocation) StartLocation para o fim de uma string.

Concat (string1, ..., Retorna um valor string contendo a Concat ('A', ')',
StringN) concatenação da string atual com todas as [ProductName])
seqüências adicionais.

Insert (String1, Insere string2 em String1 na posição Inserir ([nome], 0,


StartPosition, especificada por StartPositon 'ABC')
string2)

Len (Valor) Retorna um inteiro contendo tanto o número Len ([Descrição])


de caracteres em uma string ou o número
nominal de bytes necessários para
armazenar uma variável.

Abaixe (String) Retorna o String em letras minúsculas. Baixa


([ProductName])

PadLeft Esquerda alinha caracteres na seqüência


(Comprimento, definida, preenchendo o seu lado esquerdo,
String) com espaços em branco até um período
total especificado.

PadLeft (String, Esquerda alinha caracteres na seqüência PadLeft ([nome],


Comprimento, Char) definida, preenchendo o lado esquerdo com 30, '<')
o Char especificado até um período total
especificado.

PadRight Alinha à direita caracteres na seqüência PadRight ([nome],


(Comprimento, definida, preenchendo o seu lado esquerdo, 30)
String) com espaços em branco até um período
total especificado.

PadRight (String, Alinha à direita caracteres na seqüência PadRight ([nome],


Comprimento, Char) definida, preenchendo o lado esquerdo com 30, '>')
o Char especificado até um período total
especificado.

Remover (String, Exclui um número especificado de Remover ([nome],


StartPosition, caracteres a partir deste exemplo, 0, 3)
Comprimento) começando em uma posição especificada.
Replace (String, Devolve uma cópia de String1, em que Substitua
SubString2, SubString2 foi substituído com string3. ([nome], 'A',''
cadeia3)

Reverso (String) Inverte a ordem dos elementos dentro de Reverter ([nome])


uma seqüência.

Substring (String, Recupera uma subseqüência da Substring


StartPosition, seqüência. A subseqüência começa em ([Descrição], 2, 3)
Comprimento) StartPosition e tem o tamanho
especificado ..

Substring (String Recupera uma subseqüência da Substring


StartPosition) seqüência. A subseqüência começa em ([Descrição], 2)
StartPosition.

ToStr (Valor) Retorna uma representação string de um ToStr ([ID])


objeto.

Trim (String) Remove todas esquerda e à direita Trim


caracteres SPACE de String. ([ProductName])

Superior (String) Retorna string em letras maiúsculas. Superior


([ProductName])

Constantes
Constante Descrição Descrição

As constantes de As constantes de string deve ser [País] == 'França'


string acondicionada em apóstrofos.

Data e hora Data e hora constantes devem ser [OrderDate]> = #


constantes acondicionados em '#'. 2009/01/01 #

Verdadeiro Representa o valor booleano True. [InStock] == True

Falso Representa o valor booleano False. [InStock] == False

? Representa uma referência nula, que não [Região]! =?


se referir a qualquer objeto.

You might also like