New (Email constructor): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (1 revision) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%email</th><td>A declared <var>Email</var> object to contain the new <var>Email</var> object instance.</td></tr> | <tr><th>%email</th><td>A declared <var>Email</var> object to contain the new <var>Email</var> object instance.</td></tr> | ||
<tr><th><var>%(Email)</var></th> | <tr><th><var>[%(Email):]</var></th> | ||
<td>The class name in parentheses denotes a [[Notation conventions for methods# | <td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>. See [[#Usage notes|"Usage notes"]], below, for more information about invoking an <var>Email</var> <var>Constructor</var>.</td></tr> | ||
</table> | </table> | ||
==Usage notes== | |||
<ul> | |||
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%email = new | |||
%email = %(Email):new | |||
%email = %email:new | |||
</p> | |||
</ul> | |||
==See also== | ==See also== | ||
{{Template:Email:New footer}} | {{Template:Email:New footer}} |
Latest revision as of 20:23, 30 November 2011
Create a new email object (Email class)
Syntax
%email = [%(Email):]New
Syntax terms
A declared Email object to contain the new Email object instance. | |
[%(Email):] | The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an Email Constructor. |
Usage notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%email = new %email = %(Email):new %email = %email:new