PlaceholderValidatorValidatePlaceholderTemplate Method (String, String, Boolean, Boolean) |
Validates a string as a text that can contain multiple placeholders amongst static text.
Namespace:
MFiles.VAF.Placeholders
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic bool ValidatePlaceholderTemplate(
string templateStr,
string itemName,
bool required = true,
bool canBeEmpty = true
)
Public Function ValidatePlaceholderTemplate (
templateStr As String,
itemName As String,
Optional required As Boolean = true,
Optional canBeEmpty As Boolean = true
) As Boolean
public:
bool ValidatePlaceholderTemplate(
String^ templateStr,
String^ itemName,
bool required = true,
bool canBeEmpty = true
)
Parameters
- templateStr
- Type: SystemString
The placeholder template text. - itemName
- Type: SystemString
The name of the item being validated. - required (Optional)
- Type: SystemBoolean
Indicates whether an issue with this item is fatal (for the module.) - canBeEmpty (Optional)
- Type: SystemBoolean
Indicates whether the item can be empty.
Return Value
Type:
BooleanThe placeholder's validity.
See Also