NXOpen .NET Reference Guide
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties
Public Member Functions | Properties | List of all members
NXOpen.Validate.Validator Class Reference

Represents a NX NXOpen.Validate.Validator . More...

Inheritance diagram for NXOpen.Validate.Validator:
NXOpen.TaggedObject NXOpen.Utilities.NXRemotableObject IMessageSink

Public Member Functions

unsafe void AppendCheckerNode (string className)
 Adds a checker node. More...
 
unsafe void AppendCheckerNodes (string[] classNames)
 Adds checker nodes. More...
 
unsafe void AppendPartNode (string fileName)
 Adds part node by part file name More...
 
unsafe void AppendPartNode (NXOpen.Part partObject)
 Adds part node by part object More...
 
unsafe void AppendPartNodes (string[] fileNames)
 Adds part nodes by part file names More...
 
unsafe void AppendPartNodes (NXOpen.Part[] partObject)
 Adds part nodes by part objects More...
 
unsafe void ClearCheckerNodes ()
 Clears checker nodes More...
 
unsafe void ClearPartNodes ()
 Clears part nodes More...
 
unsafe NXOpen.Validation.Result Commit ()
 Runs checking process and returns the checking status. More...
 
unsafe void EraseCheckerNode (int delNdx)
 Removes a checker node. More...
 
unsafe void ErasePartNode (int index)
 Removes a part node More...
 
unsafe NXOpen.Validate.CheckerNode FindCheckerNode (int index)
 Returns a checker node. More...
 
unsafe NXOpen.Validate.PartNode FindPartNode (int index)
 Finds a part node More...
 
unsafe void GetCheckerNodes (out NXOpen.Validate.CheckerNode[] checkerNode)
 Returns all checker nodes. More...
 
unsafe NXOpen.ErrorList GetLastErrorListFromCommit ()
 Return the list of errors happened during last NXOpen.Validate.Validator.Commit . More...
 
unsafe void GetPartNodes (out NXOpen.Validate.PartNode[] partNodes)
 Returns all part nodes. More...
 
- Public Member Functions inherited from NXOpen.TaggedObject
void PrintTestData (String variableName)
 <exclude> More...
 
void PrintTestData (String variableName, int lineNumber)
 <exclude> More...
 
override string ToString ()
 Returns a String that represents the current Object. More...
 
- Public Member Functions inherited from NXOpen.Utilities.NXRemotableObject
IMessageCtrl AsyncProcessMessage (IMessage msg, IMessageSink replySink)
 Asynchronously processes the given message. More...
 
IMessage SyncProcessMessage (IMessage msg)
 Synchronously processes the given message. More...
 

Properties

unsafe
NXOpen.Validate.ValidatorOptions 
ValidatorOptions [get]
 Returns the run options. More...
 
- Properties inherited from NXOpen.TaggedObject
Tag Tag [get]
 Returns the tag of this object. More...
 
- Properties inherited from NXOpen.Utilities.NXRemotableObject
IMessageSink NextSink [get]
 Gets the next message sink in the sink chain. More...
 

Additional Inherited Members

- Protected Member Functions inherited from NXOpen.TaggedObject
new void initialize ()
 <exclude> More...
 

Detailed Description

Represents a NX NXOpen.Validate.Validator .

To create a new instance of this class, use NXOpen.Validate.ValidationManager.CreateValidator

Created in NX7.5.0

Member Function Documentation

unsafe void NXOpen.Validate.Validator.AppendCheckerNode ( string  className)
inline

Adds a checker node.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
classNamechecker class name
unsafe void NXOpen.Validate.Validator.AppendCheckerNodes ( string[]  classNames)
inline

Adds checker nodes.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
classNamescheckers' class name array
unsafe void NXOpen.Validate.Validator.AppendPartNode ( string  fileName)
inline

Adds part node by part file name

Created in NX7.5.0

License requirements: None.

Parameters
fileName
unsafe void NXOpen.Validate.Validator.AppendPartNode ( NXOpen.Part  partObject)
inline

Adds part node by part object

Created in NX7.5.0

License requirements: None.

Parameters
partObject
unsafe void NXOpen.Validate.Validator.AppendPartNodes ( string[]  fileNames)
inline

Adds part nodes by part file names

Created in NX7.5.0

License requirements: None.

Parameters
fileNames
unsafe void NXOpen.Validate.Validator.AppendPartNodes ( NXOpen.Part[]  partObject)
inline

Adds part nodes by part objects

Created in NX7.5.0

License requirements: None.

Parameters
partObject
unsafe void NXOpen.Validate.Validator.ClearCheckerNodes ( )
inline

Clears checker nodes

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

unsafe void NXOpen.Validate.Validator.ClearPartNodes ( )
inline

Clears part nodes

Created in NX7.5.0

License requirements: None.

unsafe NXOpen.Validation.Result NXOpen.Validate.Validator.Commit ( )
inline

Runs checking process and returns the checking status.

If failed checking statuses are found, it will return NXOpen.Validation.Result.Failed . Otherwise it will return NXOpen.Validation.Result.Pass . Call NXOpen.Validate.Validator.GetLastErrorListFromCommit for the execeptions happened during the checking process.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Returns
unsafe void NXOpen.Validate.Validator.EraseCheckerNode ( int  delNdx)
inline

Removes a checker node.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
delNdx
unsafe void NXOpen.Validate.Validator.ErasePartNode ( int  index)
inline

Removes a part node

Created in NX7.5.0

License requirements: None.

Parameters
index
unsafe NXOpen.Validate.CheckerNode NXOpen.Validate.Validator.FindCheckerNode ( int  index)
inline

Returns a checker node.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
index
Returns
checker node
unsafe NXOpen.Validate.PartNode NXOpen.Validate.Validator.FindPartNode ( int  index)
inline

Finds a part node

Created in NX7.5.0

License requirements: None.

Parameters
index
Returns
unsafe void NXOpen.Validate.Validator.GetCheckerNodes ( out NXOpen.Validate.CheckerNode[]  checkerNode)
inline

Returns all checker nodes.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
checkerNodechecker name array
unsafe NXOpen.ErrorList NXOpen.Validate.Validator.GetLastErrorListFromCommit ( )
inline

Return the list of errors happened during last NXOpen.Validate.Validator.Commit .

Created in NX9.0.0

License requirements: ug_checkmate ("UG Check Mate")

Returns
List of errors encountered during the checking process
unsafe void NXOpen.Validate.Validator.GetPartNodes ( out NXOpen.Validate.PartNode[]  partNodes)
inline

Returns all part nodes.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")

Parameters
partNodes

Property Documentation

unsafe NXOpen.Validate.ValidatorOptions NXOpen.Validate.Validator.ValidatorOptions
get

Returns the run options.

Created in NX7.5.0

License requirements: ug_checkmate ("UG Check Mate")


The documentation for this class was generated from the following file:
Copyright 2019 Siemens Product Lifecycle Management Software Inc. All Rights Reserved.