'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function ToDAItemArguments( _ ByVal itemPoint As DAItemPoint _ ) As DAItemArguments
'Usage
Dim itemPoint As DAItemPoint Dim value As DAItemArguments value = DAItemPoint.ToDAItemArguments(itemPoint)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static DAItemArguments ToDAItemArguments( DAItemPoint itemPoint )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static DAItemArguments^ ToDAItemArguments( DAItemPoint^ itemPoint )
Parameters
- itemPoint
- The attribute point to be converted.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
The item arguments that correspond to the item point.
null
if the item point passed in was null
.
This method can return null
(Nothing
in Visual Basic).