Difference between revisions of "cock.new"

m (See also)
m (Returns)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Creates a new control object.  
 
Creates a new control object.  
== Synopsis ==
+
== Function ==
=== Function ===
+
=== Synopsis ===
 
<source lang="Lua">control = cock.new ( id, data )</source>
 
<source lang="Lua">control = cock.new ( id, data )</source>
 
=== Arguments ===
 
=== Arguments ===
 
{{param|string|id|Optional. An identifier to use for this object. Generated automatically if not provided.}}
 
{{param|string|id|Optional. An identifier to use for this object. Generated automatically if not provided.}}
{{param|table|data|Optional. Specifically formated [[cock.setupdata|setup data]] to build layouts from. Will not instantly create layout if not provided.}}
+
{{param|table|data|Optional. Specifically formated [[Common Organization of Controls Kit Setup data|setup data]] to build layouts from. Will not instantly create layout if not provided.}}
  
 
=== Returns ===
 
=== Returns ===
{{param|table|control|Newly created control object}}
+
{{param|table|control|Newly created control object.}}
 +
 
 
==See also==
 
==See also==
 
*[[cock.delete]]
 
*[[cock.delete]]
 
*[[cock.find]]
 
*[[cock.find]]
 +
*[[Common Organization of Controls Kit Setup data]]
 
*[[parent::Common Organization of Controls Kit Manual]]
 
*[[parent::Common Organization of Controls Kit Manual]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Latest revision as of 19:18, 2 September 2013

Creates a new control object.

Function

Synopsis

control = cock.new ( id, data )

Arguments

string id
Optional. An identifier to use for this object. Generated automatically if not provided.
table data
Optional. Specifically formated setup data to build layouts from. Will not instantly create layout if not provided.

Returns

table control
Newly created control object.

See also