LVectorPolydraw::LockObject

#include "ltwrappr.h"

virtual L_INT LVectorPolydraw::LockObject(pPolyDraw)

pVECTORPOLYDRAW pPolyDraw;

pointer to a vector object

Gets the object information of the class object.

Parameter

Description

pPolyDraw

Pointer to a VECTORPOLYDRAW structure to be updated with the vector object information.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function is used to retrieve the object information of the class object.

To use this method, declare a variable of the VECTORPOLYDRAW type and pass the address to this function. After modifying the vector object settings, call LVectorPolydraw::UnlockObject (). LVectorPolydraw::LockObject () and LVectorPolydraw::UnlockObject () should always be called in pairs.

Before an object has been added to the LVectorBase object, using LVectorBase::AddObject or LVectorLayer::AddObject, LVectorPolydraw::UnlockObject () can be used to change ALL properties of an object. However, once the object has been added to the LVectorBase object, some properties cannot be changed using LVectorPolydraw::UnlockObject ().However, as long as the number of points does not change, the coordinates of the individual points can always be modified using LVectorPolydraw::UnlockObject ().

To change the object information for a class object, call LVectorPolydraw::UnlockObject.

LVectorPolydraw::LockObject and LVectorPolydraw::UnlockObject must be called in pairs.

Note that rotating an object may change the object type. However, not all object types are changed by rotation, and not all rotations result in changing an object type. For example, a rectangle rotated 90 degrees about the z-axis is still a rectangle. A rectangle rotated 45 degrees about the z-axis becomes a polydraw object. The table below indicates object types that may change following rotation and the possible resulting object types.

Original object type

Possible object type following rotation

VECTOR_RECTANGLE

VECTOR_POLYGON

VECTOR_ELLIPSE

VECTOR_POLYDRAW

VECTOR_CIRCLE

VECTOR_POLYDRAW

VECTOR_ARC

VECTOR_POLYDRAW

VECTOR_TEXT

VECTOR_POLYDRAW

VECTOR_PIE

VECTOR_POLYDRAW

If an object type changes, LVectorPolydraw::LockObject and LVectorPolydraw::UnlockObject will return WRPERR_VECTOR_INVALID_OBJECT_TYPE. Object properties can still be inspected and changed by using LVectorObject::GetObjectAttributes and LVectorObject::SetObjectAttributes.

Required DLLs and Libraries

LVKRN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LVectorPolydraw::UnlockObject

Topics:

Working with Vector Objects

Example

This example will add a new green PolyDraw to the Active Layer LVectorBase object Once added, the color will be changed to blue.

L_INT LVectorPolydraw__LockObjectExample(HWND hWnd, LVectorBase *pVector) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
   L_INT             nRet; 
   VECTORPOLYDRAW    PolyDraw; 
   VECTORPOINT       Points[8] = 
   { 
      30,  30, 0, 0, 
      50,  30, 0, 0, 
      50,  50, 0, 0, 
      30,  50, 0, 0, 
      70,  30, 0, 0, 
      90,  30, 0, 0, 
      90,  50, 0, 0, 
      70,  50, 0, 0 
   }; 
   PolyDraw.Point = Points; 
   PolyDraw.nPointCount = 8; 
   L_UCHAR byType[8] = 
   { 
      VECTOR_PT_MOVETO, 
      VECTOR_PT_LINETO, 
      VECTOR_PT_LINETO, 
      VECTOR_PT_LINETO, 
      VECTOR_PT_MOVETO, 
      VECTOR_PT_LINETO, 
      VECTOR_PT_LINETO, 
      VECTOR_PT_LINETO 
   }; 
   PolyDraw.pbyType = byType; 
   PolyDraw.Pen. bExtPen = FALSE; 
   PolyDraw.Pen.nSize = sizeof( VECTORPEN ); 
   PolyDraw.Pen.NewPen.LogPen.lopnStyle = PS_SOLID; 
   PolyDraw.Pen.NewPen.LogPen.lopnWidth.x = 1; 
   PolyDraw.Pen.NewPen.LogPen.lopnWidth.y = 1; 
   PolyDraw.Pen.NewPen.LogPen.lopnColor = RGB(255,255,0); 
   PolyDraw.Brush.VectorBrushStyle = VECTORBRUSH_STANDARD; 
   PolyDraw.Brush.nSize = sizeof(VECTORBRUSH); 
   PolyDraw.Brush.BrushType.StandardBrush.LogBrush.lbColor = RGB(0,255,0); 
   PolyDraw.Brush.BrushType.StandardBrush.LogBrush.lbStyle = BS_SOLID; 
   LVectorPolyDraw VectorPolyDraw(&PolyDraw); 
   // add to current active layer 
   LVectorLayer VectorLayer; 
   nRet = pVector->GetActiveLayer(&VectorLayer); 
   if (nRet == SUCCESS) 
   { 
      nRet = VectorLayer.AddObject(&VectorPolyDraw); 
      if(nRet != SUCCESS) 
         return nRet; 
      //Now change color to blue 
      MessageBox(NULL, TEXT("Changing pen color to blue"), TEXT(""), MB_OK); 
      VECTORPOLYDRAW PolyDrawTemp; 
      nRet = VectorPolyDraw.LockObject(&PolyDrawTemp); 
      if(nRet != SUCCESS) 
         return nRet; 
      PolyDrawTemp.Pen. bExtPen = FALSE; 
      PolyDrawTemp.Pen.NewPen.LogPen.lopnColor = RGB(0,0,255); 
      nRet = VectorPolyDraw.UnlockObject(&PolyDrawTemp); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   else 
   { 
      MessageBox(NULL, TEXT("No Active Layer--Load a vector and run again"), TEXT(""), MB_OK); 
      return nRet; 
   } 
   //LVectorPolyDraw destructor called when VectorPolyDraw goes out of scope 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Vector C++ Class Library Help