Guid.IsGuid

Syntax

IsGuid(Value: String): Boolean;

Parameters

Value. String value that must be checked.

Description

The IsGuid method checks if the specified string value is a unique global identifier that can be represented with the Guid data type.

Comments

The method returns True if the specified value can be converted to the Guid data type, and False if conversion is impossible. Use the Parse or TryParse method for conversion.

See also:

The Guid Class