Difference between revisions of "ResourceTemplatePropertyNumber"

From Catglobe Wiki
Jump to: navigation, search
Line 19: Line 19:
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}}
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}}
 
}}
 
}}
 +
=== <span style="color:#DF8621">'''Examples'''</span> ===
 +
 +
<source lang="javascript">
 +
 +
</source>

Revision as of 07:19, 16 November 2016

ResourceTemplatePropertyNumber



A numeric property on a resource template

Constructors

  • (string label "Set label", bool required "Set required", string description "Set description", ResourceTemplate resourceTemplate "ResourceTemplate property gets added to") - Create new numeric property

Methods

  • Empty Delete() - Delete the property
  • string ToString() - The string representation of the object.

Properties

  • string Description { get; set; } - Get/set Description
  • bool IsDecimal { get; set; } - Get/set IsDecimal
  • string Label { get; set; } - Get/set Label
  • number MaxValue { get; set; } - Get/set MaxValue, -1 if unset
  • number MinValue { get; set; } - Get/set MinValue, -1 if unset
  • string ObjectTypeName { get; } - The name of the type of object.
  • bool Required { get; set; } - Get/set Required
  • TypeInformation TypeInformation { get; } - Get information about this class.

Examples