IsWindows
Description
Returns True if the CQCompass object is created in a Windows™ platform.
Syntax
Perl
$CompassObj->IsWindows
();
- Identifier
- Description
- CompassObj
- A CQCompass object.
- Return value
- Returns True if the object is created in a Windows™ platform, False otherwise.
Example
Perl
use CQPerlExt;
my $cqobject = CQCompass::Build();
$is_Windows_flag = $cqobject->IsWindows();
CQCompass::Unbuild($cqobject);