Como: Obter um valor de uma propriedade (Visual Basic)

You retrieve a property's value by including the property name in an expression.

The property's Get procedure retrieves the value, but you do not explicitly call it by name. Você pode usar a propriedade exatamente como você usaria uma variável. Visual Basicfaz as chamadas para os procedimentos da propriedade.

To retrieve a value from a property

  1. Use the property name in an expression the same way you would use a variable name. You can use a property anywhere you can use a variable or a constant.

    - ou -

    Use the property name following the equal (=) sign in an assignment statement.

    O exemplo a seguir lê o valor da Visual Basic Now propriedade, implicitamente chamando seu Get procedimento.

    Dim ThisMoment As Date
    ' The following statement calls the Get procedure of the Visual Basic Now property.
    ThisMoment = Now
    
  2. If the property takes arguments, follow the property name with parentheses to enclose the argument list. If there are no arguments, you can optionally omit the parentheses.

  3. Place the arguments in the argument list within the parentheses, separated by commas. Be sure you supply the arguments in the same order that the property defines the corresponding parameters.

The value of the property participates in the expression just as a variable or constant would, or it is stored in the variable or property on the left side of the assignment statement.

Consulte também

Tarefas

Como: Criar uma propriedade (Visual Basic)

Como: Declarar uma propriedade com níveis de acesso mistos (Visual Basic)

Como: Chamar um procedimento de propriedade (Visual Basic)

Como: declarar e chamar uma propriedade padrão em Visual Basic

Como: Inserir um valor em uma propriedade (Visual Basic)

Referência

Propriedade declaração

Conceitos

Procedimentos no Visual Basic

Procedimentos de propriedade (Visual Basic)

Parâmetros e argumentos de procedimento (Visual Basic)

Diferenças entre variáveis e propriedades em Visual Basic