- UID
- 251197
- 积分
- 225
- 精华
- 贡献
-
- 威望
-
- 活跃度
-
- D豆
-
- 在线时间
- 小时
- 注册时间
- 2005-4-28
- 最后登录
- 1970-1-1
|
发表于 2005-11-18 16:31:08
|
显示全部楼层
供参考,我没有测试
AcPlPlotConfig::getDescriptionFields Function virtual ACPL_PORT void
getDescriptionFields(
char* & pDriverName,
char* & pLocationName,
char* & pComment,
char* & pPortName,
char* & pServerName,
char* & pTagLine) const;
pDriverName Output string that specifies the name of the driver for the device or PC3 file
pLocationName Output string that specifies the physical location of the device
pComment Output string that specifies a brief description of the device
pPortName Output string that identifies the port used to transmit data to the device
pServerName Output string that specifies the server that controls the device
pTagLine Output string that specifies the description of the driver
This method provides the caller with information about the device being used. The Current Plot dialog uses these strings to display the Description, Where, and Plotter fields in the Plotter Configuration group.
Note This method allocates the returned strings using acutNewString(). Clients need to call acutDelString() to delete the strings when they are no longer needed. |
|