CProfile Constructors: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{DISPLAYTITLE:cProfile Constructors}}{{Template:API}}{{Template:APIBreadcrumb|.cProfile}}{{InProgress}} <onlyinclude>A parameterized constructor for the [[C…')
 
No edit summary
Line 15: Line 15:
  '''VB.NET'''
  '''VB.NET'''
   
   
  {{APIComment|'The following code creates a new profile called "NewProfile".}}
  {{APIComment|'Create a new profile called "NewProfile".}}
   {{APIPrefix|Dim}} Resource {{APIPrefix|As New}} cProfile({{APIString|"NewProfile"}})
   {{APIPrefix|Dim}} myResource {{APIPrefix|As New}} SynthesisAPI.cProfile({{APIString|"NewProfile"}})

Revision as of 18:03, 3 October 2016

APIWiki.png


Member of: SynthesisAPI.cProfile Template:InProgress


A parameterized constructor for the cProfile class. (VB.NET only)

Syntax

cProfile(Name)

Parameters

Name

Required. String. The name for the new profile.


Example

VB.NET

 'Create a new profile called "NewProfile". 
  Dim myResource As New SynthesisAPI.cProfile("NewProfile")