CXfmeaControl Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:
{| {{APITable}}
{| {{APITable}}
|-
|-
| style="width: 200px;"|CreatedByID||Gets the numeric ID of the database user who created the control. '''Integer'''.
| style="width: 200px;"|ControlDescription||Gets or sets the description for the control. '''String'''.
|-
|ControlType||Gets or sets the control type (e.g., detection, prevention, etc.). '''String'''.
|-
|CreatedByID||Gets the numeric ID of the database user who created the control. '''Integer'''.
|-
|-
|CreatedByNm||Gets the display name of the database user who created the control. '''String'''.
|CreatedByNm||Gets the display name of the database user who created the control. '''String'''.
Line 22: Line 26:
|CreatedDate||Gets the date the control resource was created. '''Date'''.
|CreatedDate||Gets the date the control resource was created. '''Date'''.
|-
|-
|ControlDescription||Gets or sets the description for the control. '''String'''.
|ID||Gets the numeric ID of the control. '''Integer'''.
|-
|{{Template:API_TxtIdentifiers}}
|-
|-
|ControlType||Gets or sets the control type (e.g., detection, prevention, etc.). '''String'''.
|LastUpdated||Gets the date the control was last modified. '''Date'''.  
|-
|-
|ID||Gets the numeric ID of the control. '''Integer'''.
|LastUpdatedByID||Gets the numeric ID of the database user who last modified the control. '''Integer'''.  
|-
|-
|{{Template:API_TxtIdentifiers}}
|LastUpdatedNm||Gets the display name of the database user who last modified the control. '''String'''.
|-
|-
|Name||Gets the control's name. '''String'''.
|Name||Gets or sets the control's name. '''String'''.
|-
|-
|ProjectID||Gets the numeric ID of the project the control belongs to. '''Integer'''.
|ProjectID||Gets the numeric ID of the project the control belongs to. '''Integer'''.
Line 48: Line 54:




==Related Links==
 
 
 
==See Also==
*[[Repository.Control.AddXfmeaControl|Repository.Control.AddXfmeaControl Method]]
*[[Repository.Control.AddXfmeaControl|Repository.Control.AddXfmeaControl Method]]
*[[Repository.Control.GetAllXfmeaControls|Repository.Control.GetAllXfmeaControls Method]]
*[[Repository.Control.GetAllXfmeaControls|Repository.Control.GetAllXfmeaControls Method]]

Revision as of 23:14, 5 November 2015

APIWiki.png


Member of: SynthesisAPI10


Represents a control resource.

Constructors

Name Description
cXfmeaControl Creates an instance of the cXfmeaControl class.
cXfmeaControl() A parameterized constructor for the cXfmeaControl class. (.NET only)


Methods

Name Description
ControlDescription Gets or sets the description for the control. String.
ControlType Gets or sets the control type (e.g., detection, prevention, etc.). String.
CreatedByID Gets the numeric ID of the database user who created the control. Integer.
CreatedByNm Gets the display name of the database user who created the control. String.
CreatedDate Gets the date the control resource was created. Date.
ID Gets the numeric ID of the control. Integer.
ItemApplication Gets or sets the item's application. (Synthesis identifier) String
ItemCategoryID Gets or sets the category ID. (Synthesis identifier) Integer
ItemComments Gets or sets the comments. (Synthesis identifier) String
ItemDescription Gets or sets the description. (Synthesis identifier) String
ItemKeywords Gets or sets the keywords. (Synthesis identifier) String
ItemPartNumber Gets or sets the part number. (Synthesis identifier) String
ItemSupplier Gets or sets the supplier name. (Synthesis identifier) String
ItemVersion Gets or sets the version number. (Synthesis identifier) String
LastUpdated Gets the date the control was last modified. Date.
LastUpdatedByID Gets the numeric ID of the database user who last modified the control. Integer.
LastUpdatedNm Gets the display name of the database user who last modified the control. String.
Name Gets or sets the control's name. String.
ProjectID Gets the numeric ID of the project the control belongs to. Integer.
UDD1 Gets or sets the text in the first user-defined drop-down field. (Limited to 50 characters.) String.
UDD2 Gets or sets the text in the second user-defined drop-down field. (Limited to 50 characters.) String.
UDT1 Gets or sets the date in the first user-defined date field. Date.
UDT2 Gets or sets the date in the second user-defined date field. Date.
UN1 Gets or sets the value in the first user-defined number field. Double.
UN2 Gets or sets the value in the second user-defined number field. Double.



See Also