Operador Property.LessThan
Determines whether one object is less than another object by performing an less than operation on two Property objects.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Shared Operator < ( _
prop1 As Property, _
prop2 As Property _
) As Boolean
'Uso
Dim prop1 As [Property]
Dim prop2 As [Property]
Dim returnValue As Boolean
returnValue = (prop1 < prop2)
public static bool operator <(
Property prop1,
Property prop2
)
public:
static bool operator <(
Property^ prop1,
Property^ prop2
)
static let inline(<)
prop1:Property *
prop2:Property : bool
JScript dá suporte ao uso de operadores sobrecarregados, mas não à declaração de operadores novos.
Parâmetros
- prop1
Tipo: Microsoft.SqlServer.Management.Smo.Property
A Property object that specifies a property.
- prop2
Tipo: Microsoft.SqlServer.Management.Smo.Property
A Property object that specifies a property.
Valor de retorno
Tipo: System.Boolean
A Boolean object that specifies whether the first object is less that the second object.If True, the first object is less than the second object.If False, the first object is not less than the second object.