Initializes a new instance of the
QuestionListItem class.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As String, _
ByVal As Boolean _
)
'Usage
Dim text As String
Dim value As String
Dim selected As Boolean
Dim instance As New QuestionListItem(text, value, selected)
public QuestionListItem(
string ,
string ,
bool
)
public QuestionListItem(
: String;
: String;
: Boolean
);
public function QuestionListItem(
: String,
: String,
: boolean
);
public: QuestionListItem(
string* ,
string* ,
bool
)
public:
QuestionListItem(
String^ ,
String^ ,
bool
)
Parameters
- text
- The text.
- value
- The value.
- selected
- if set to
true
[selected].
See Also