- The following is a quotecaoyinStatements in 2010-4-12 15:48:00:
- From AutoCAD help file
- Draws a vector in the currently active dialog box image
- (Vector_image x1 y1 x2 y2 color)
- This function draws a vector in the currently active dialog box image (opened by start_image) from the point (x1, y1) to (x2, y2). The origin (0,0) is the upper-left corner of the image. You can obtain the coordinates of the lower-right corner by calling the dimension functions (dimx_tile and dimy_tile).
- Arguments
- x1
- X coordinate of the first point.
- y1
- Y coordinate of the first point.
- x2
- X coordinate of the second point.
- y2
- Y coordinate of the second point.
- color
- An AutoCAD color number, or one of the logical color numbers shown in the following table:
- Symbolic names for color attribute
- Color numberADI mnemonicDescription
- -2BGLCOLORCurrent background of the AutoCAD drawing area
- -15DBGLCOLORCurrent dialog box background color
- -16DFGLCOLORCurrent dialog box foreground color (text)
- -18LINELCOLORCurrent dialog box line color
- Return Values
- An integer representing the color of the vector.
- Examples
- (Setq color -2);; color of AutoCAD drawing area
- (Vector_image
- 0
- 0
- (Dimx_tile "slide_tile")
- (Dimy_tile "slide_tile")
- color
- )
- (End_image)
dear sir
thx for reply & u r time
very use full
how can sld file in store in vlx
|