Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Virtual Terminal Interaction Layer (VT IL) » VTIL_SetNodeProperty

VTIL_SetNodeProperty

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long VTIL_SetNodeProperty( char propertyName[], long propertyValue); // form 1
  • long VTIL_SetNodeProperty( dbNode vt, char propertyName[], long propertyValue); // form 2
  • long VTIL_SetNodeProperty( char propertyName[], char propertyValue[]); // form 3
  • long VTIL_SetNodeProperty( dbNode vt, char propertyName[], char propertyValue[]); // form 4

Description

Changes an internal property of the node.

Parameters

Return Values

  • 0: Property has been set successfully
  • < 0: An error has occurred: IL Error Code

Example

void SetNodeProperties()
{
  // Set language to English
  VTIL_SetNodeProperty(VT, "languageCode", 0x656E);
  // Object Pools have to be stored in the subdirectory "OP_VT1"
  VTIL_SetNodeProperty(VT, "locationOfStoredObjectPools", "OP_VT1");
}