CADability dotNET
Constructs a MultipleChoiceInput object with no initial value

Namespace: CADability.Actions
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public MultipleChoiceInput(
	string resourceId,
	string resourceIdValues
)
Visual Basic
Public Sub New ( _
	resourceId As String, _
	resourceIdValues As String _
)
Visual C++
public:
MultipleChoiceInput(
	String^ resourceId, 
	String^ resourceIdValues
)

Parameters

resourceId
Type: System..::..String
the resource id to specify a string from the StringTable. ResourceId+".Label": the Label left of the edit box. ResourceId+".ShortInfo": a short tooltip text ResourceId+"DetailedInfo": a longer tooltip text.
resourceIdValues
Type: System..::..String
resource id of the strings for the values starting with a delimiter and seperated by the same delimiter e.g. "|first|second|third"

See Also