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
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:cProfile Constructors}}{{Template:API}}{{Template:APIBreadcrumb|.[[CProfile_Class|cProfile]]}}{{InProgress}}
{{DISPLAYTITLE:cProfile Constructors}}{{Template:API}}{{Template:APIBreadcrumb|.[[CProfile_Class|cProfile]]}}




<onlyinclude>A parameterized constructor for the [[CProfile Class|cProfile]] class. (VB.NET only)</onlyinclude>
<onlyinclude>A parameterized constructor for the [[CProfile Class|cProfile]] class. (.NET only)</onlyinclude>


== Syntax ==
== Syntax ==
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"}})

Latest revision as of 15:11, 3 August 2017

APIWiki.png


Member of: SynthesisAPI.cProfile


A parameterized constructor for the cProfile class. (.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")