Difference between revisions of "CatTaskNeverSchedule class"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "{{CGscriptClass_Template |Name=<nowiki>CatTaskNeverSchedule</nowiki> |Description=<nowiki>Schedule cattask to never now</nowiki> |Constructors= {{CGscriptConstructors_Template...")
(Tag: visualeditor-switched)
 
Line 10: Line 10:
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
}}
 
}}
 +
=== <span style="color:#DF8621">'''Examples'''</span> ===
 +
<source lang="javascript">
 +
CatTaskScheduleHelper csHelper = new CatTaskScheduleHelper();
 +
number taskId = 54183;
 +
CatTaskNeverSchedule schedule = new CatTaskNeverSchedule();
 +
csHelper.RescheduleByMetaDataId(taskId, schedule);
 +
</source>

Revision as of 04:27, 31 May 2017

CatTaskNeverSchedule



Schedule cattask to never now

Constructors

  • () - Never now

Methods

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

Properties

  • string ObjectTypeName { get; } - The name of the type of object.
  • TypeInformation TypeInformation { get; } - Get information about this class.

Examples

CatTaskScheduleHelper csHelper = new CatTaskScheduleHelper();
number taskId = 54183;
CatTaskNeverSchedule schedule = new CatTaskNeverSchedule();
csHelper.RescheduleByMetaDataId(taskId, schedule);