L_AutSetVectorProperty

#include "ltaut.h"

L_LTAUT_API L_INT  L_AutSetVectorProperty(pAutomation, pProps);

Sets the vector automation properties.

Parameters

pAUTOMATIONHANDLE pAutomation

Pointer to an automation handle.

const pAUTOMATIONVECTORPROPERTIES pProps

Pointer to an AUTOMATIONVECTORPROPERTIES structure that contains the new vector automation properties to set.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Note: This function is only available in the vector toolkits.

The properties set by this function include pen, brush and font properties used when drawing new vector objects in the automation container.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example will set a new pen color.

L_INT AutSetVectorPropertyExample(pAUTOMATIONHANDLE  pAutomation, 
                                                  COLORREF           Clr) 
{ 
   L_INT nRet; 
   AUTOMATIONVECTORPROPERTIES Props;   /* properties */ 
 
   ZeroMemory( &Props, sizeof( Props ) ); 
   Props.nSize    = sizeof( Props ); 
   Props.dwMask   = AUTOMATION_VECTOR_PEN; 
 
   nRet = L_AutGetVectorProperty( pAutomation, &Props ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   Props.Pen.bExtPen                   = FALSE; 
   Props.Pen.NewPen.LogPen.lopnColor   = Clr; 
   nRet = L_AutSetVectorProperty(pAutomation, &Props ); 
   if(nRet != SUCCESS) 
      return nRet; 
   return SUCCESS; 
} 

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Container and Automation C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.