forked from lloyddewit/RScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clsRElementFunction.vb
30 lines (22 loc) · 1.1 KB
/
clsRElementFunction.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Public Class clsRElementFunction
Inherits clsRElementProperty
Public lstParameters As New List(Of clsRParameterNamed)
Public Sub New(clsToken As clsRToken, Optional bBracketedNew As Boolean = False,
Optional strPackageNameNew As String = "",
Optional strPackagePrefix As String = "",
Optional lstObjectsNew As List(Of clsRElement) = Nothing)
MyBase.New(clsToken, bBracketedNew, strPackageNameNew, strPackagePrefix, lstObjectsNew)
End Sub
'''--------------------------------------------------------------------------------------------
''' <summary> TODO. </summary>
'''
''' <returns> as debug string. </returns>
'''--------------------------------------------------------------------------------------------
Public Overloads Function GetAsDebugString() As String
Dim strTxt As String = "ElementFunction: " & vbLf
For Each clsParameter As clsRParameterNamed In lstParameters
strTxt &= clsParameter.GetAsDebugString()
Next
Return strTxt
End Function
End Class