EnterpriseOneEntityObjectExtensionsAreScalarAttributesZeroT Method |
Check if the scalar attributes of the current line have zero values.
Returns true if all the scalar attributes have zero values.
Namespace:
Aloe.EnterpriseOne.Model.Core.Transformations
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic static bool AreScalarAttributesZero<T>(
this T obj
)
where T : EnterpriseOneEntityObject
<ExtensionAttribute>
Public Shared Function AreScalarAttributesZero(Of T As EnterpriseOneEntityObject) (
obj As T
) As Boolean
public:
[ExtensionAttribute]
generic<typename T>
where T : EnterpriseOneEntityObject
static bool AreScalarAttributesZero(
T obj
)
[<ExtensionAttribute>]
static member AreScalarAttributesZero :
obj : 'T -> bool when 'T : EnterpriseOneEntityObject
Parameters
- obj
- Type: T
Type Parameters
- T
Return Value
Type:
Booleantrue if all the values are zero.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
The scalar attributes are usually quantity and amount. Text attributes and references
are usually the non-scalar attributes.
See Also