IsWindows

Description

Returns True if the CQClearQuest object is created in a Windows platform.

Note: This method became available in version 2002.05.00.

Syntax

Perl

$ClearQuestObj->IsWindows(); 
Identifier
Description
ClearQuestObj
A CQClearQuest object.
Return value
Returns True if the object is created in a Windows platform, False otherwise.

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest ::Build();

$is_Windows_flag = $cqobject->IsWindows();



CQClearQuest ::Unbuild($cqobject);