Core Function isVarGUIObject

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "<pre> isVarGUIObject( $variable, <type> ) </pre> === Description === Check if a variable's object type is a GUI Object (Buttons etc). === Parameters === ==== variable ==== T...")
 
m (1 revision)
 
(4 intermediate revisions by one user not shown)
Line 27: Line 27:
 
"groupbox"
 
"groupbox"
 
"radiobutton"
 
"radiobutton"
 +
"progressbar"
 
</pre>
 
</pre>
  
Line 33: Line 34:
 
=== Return Value ===
 
=== Return Value ===
  
Success: Returns 1.
+
Success: Returns true.
  
Failure: Returns 0.
+
Failure: Returns false.
  
 
=== Remarks ===
 
=== Remarks ===
Line 44: Line 45:
  
 
<syntaxhighlight lang="sputnik">
 
<syntaxhighlight lang="sputnik">
$var1 = "check me";
+
$var1 = GUICreate("Window", "Test");
 
println( "Is it?: " . isVarGUIObject($var1) );
 
println( "Is it?: " . isVarGUIObject($var1) );
println( "Is it?: " . isVarGUIObject($var1, "groupbox") );
+
// Alternative
 +
println( $var1 is Window  );
 +
// Alternative
 +
println( $var1 ~~ Window  );
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:Core Function]]
 
[[Category:Core Function]]

Latest revision as of 12:37, 14 June 2015

isVarGUIObject( $variable, <type> )

Contents

Description

Check if a variable's object type is a GUI Object (Buttons etc).

Parameters

variable

The variable to check.

type

Optoinal; The type to check against valid types are:

[TYPE]			[DETAILS]
"button"
"textbox"
"datagrid"
"label"
"checkbox"
"tabsheet"
"tabpage"
"groupbox"
"radiobutton"
"progressbar"

Default just checks if it IS an object type or not.

Return Value

Success: Returns true.

Failure: Returns false.

Remarks

None.

Example

$var1 = GUICreate("Window", "Test");
println( "Is it?: " . isVarGUIObject($var1) );
// Alternative
println( $var1 is Window  );
// Alternative
println( $var1 ~~ Window  );
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox