User Tools

Site Tools


DzAuthor

Encapsulates authorship information.

More...

Inherits :

Properties

Constructors

DAZ Script
DzAuthor ()
DzAuthor ( String author )
DzAuthor ( DzAuthor author )
DzAuthor ( String name, String email, String url=“” )

Detailed Description

DzAuthor is used to access authorship data for native files, and the current instance of the application.

See Also:

Properties


String : email

Deprecated

Exists only to keep old code working.


String : name

The author's name. (Read Only)


String : url

The author's url. (Read Only)


String : valid

true if name contains valid information, otherwise false. (Read Only)

Constructors


DzAuthor()

Default constructor. Creates an empty author.


DzAuthor( String author )

Creates an author by parsing a string.

Parameter(s):

  • author - A string representation of the author in the form "[ name, email, url ]"

DzAuthor( DzAuthor author )

Copy Constructor.

Parameter(s):

  • author - The author information to copy.

DzAuthor( String name, String email, String url=“” )

Create a DzAuthor with the given name, email, and url.

Parameter(s):

  • name - The name of the author.
  • email - The author's email address.
  • url - The author's home page URL.