AlignmentInfo Constructor |
Initializes a new instance of the AlignmentInfo class,
specifying all properties.
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public AlignmentInfo(
string name,
string description,
bool required,
string defaultValue,
string dataType,
IParameterValidator validator
)
Public Sub New (
name As String,
description As String,
required As Boolean,
defaultValue As String,
dataType As String,
validator As IParameterValidator
)
public:
AlignmentInfo(
String^ name,
String^ description,
bool required,
String^ defaultValue,
String^ dataType,
IParameterValidator^ validator
)
new :
name : string *
description : string *
required : bool *
defaultValue : string *
dataType : string *
validator : IParameterValidator -> AlignmentInfo
Parameters
- name
- Type: SystemString
Name of the property - description
- Type: SystemString
A friendly description of property. - required
- Type: SystemBoolean
True if this is a required property. - defaultValue
- Type: SystemString
The default value that will be used (expressed as a string). - dataType
- Type: SystemString
The data type: INT, FLOAT, or STRINGLIST. - validator
- Type: BioIParameterValidator
The validation object, or null if no validation is required.
See Also