⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 text.h

📁 AutoCAD DWG-file viewer
💻 H
字号:
/****************************************************************/
/*			COPYRIGHT NOTICE			*/
/*			----------------			*/
/*  All software in this listing remain the strict copyright	*/
/*  of Ilija Kovacevic and cannot be copied or used in any way	*/
/*  except by written permission of Ilija Kovacevic.		*/
/*								*/
/*	Copyright (c) 1992 Ilija Kovacevic			*/
/*	www.kov.com   email ilija@kov.com			*/
/****************************************************************/

typedef struct
	{
	AcadEntity common;
	DOUBLE x,y;
	DOUBLE height,angle,x_scale;
	DOUBLE obliquing_angle;
	DOUBLE alignment_x,alignment_y;
	UINT8 text_style,generation_flags;
	UINT8 horizontal_text_justify_type;
	UINT8 vertical_text_justify_type;
	boolean upsidedown:1;
	boolean backward:1;
	boolean vertical:1;
	char *text;
	} AcadText;


AcadText *AcadText__create( void );
void AcadText__delete( AcadText *me );
void AcadText__read( AcadText *me );
void AcadText__write( AcadText *me );
void AcadText__dump_to_debug_file( AcadText *me );
void AcadText__dxfout( AcadText *me );
int AcadText__length( AcadText *me );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -