C# Solidworks二次开发:枚举应用实战(第三讲)

news2024/11/18 1:45:49

大家好,今天继续介绍枚举相关内容。

下面是今天要介绍的枚举:

(1)第一个为swACisOutputVersion,这个枚举为ACIS的版本,下面是官方的具体解释:

其枚举值为:

MemberDescription
swAcisOutputVersion_10010
swAcisOutputVersion_11011
swAcisOutputVersion_12012
swAcisOutputVersion_13013
swAcisOutputVersion_14014
swAcisOutputVersion_15015
swAcisOutputVersion_160
swAcisOutputVersion_16016
swAcisOutputVersion_171
swAcisOutputVersion_17017
swAcisOutputVersion_18018
swAcisOutputVersion_19019 
swAcisOutputVersion_20
swAcisOutputVersion_20020
swAcisOutputVersion_21
swAcisOutputVersion_21021 
swAcisOutputVersion_22022
swAcisOutputVersion_27027
swAcisOutputVersion_30
swAcisOutputVersion_40
swAcisOutputVersion_506
swAcisOutputVersion_607
swAcisOutputVersion_70
swAcisOutputVersion_80

(2)第二个为swAnnotationType_e,这个枚举为注释类型,下面是具体的枚举值:

MemberDescription
swBlock12 
swCenterLine15 
swCenterMarkSym13 
swCThread
swCustomSymbol
swDatumOrigin16 
swDatumTag
swDatumTargetSym
swDisplayDimension
swDowelSym10 
swGTol
swLeader11 
swNote
swPMIOnly19
swRevisionCloud18
swSFSymbol
swTableAnnotation14 
swWeldBeadSymbol17 
swWeldSymbol

(3)第三个为swArrowPosition,这个枚举为气泡工具提示的箭头位置,下面是具体的枚举值:

MemberDescription
swArrowDownBottomLeft6 = Down and on the bottom-left edge of bubble
swArrowDownBottomRight7 = Down and on the bottom-right edge of bubble
swArrowLeftBottom1 = Left and at bottom corner of bubble
swArrowLeftOrRight10 = Left or right; code decides if arrow on top or bottom corner
swArrowLeftOrRightBottom9 = Left or right and in one of the bottom corners of bubble
swArrowLeftOrRightTop8 = Left or right and in one of the top corners of bubble
swArrowLeftTop0 = Left and at top corner of bubble
swArrowNone14 = No arrow used; instead, a floating
swArrowRightBottom

3 = Right and at bottom corner of bubble

swArrowRightTop2 = Right and at top corner of bubble
swArrowUnknown15 = Do not know where to put the arrow; instead, ActiveX control decides where to put arrow or its default position is used
swArrowUpOrDown13 = Upward or downward; code decides if arrow left or right of the bubble
swArrowUpOrDownLeft11 = Upward or downward and on left side of bubble
swArrowUpOrDownRight12 = Upward or downward and on right side of bubble
swArrowUpTopLeft4 = Upward and on the top-left edge of bubble
swArrowUpTopRight5 = Upward and on the top-right edge of bubble

(4)第四个枚举为swAppNOtify_e,这个枚举为应用程序的通知,下面是具体的枚举值:

MemberDescription
swAppActiveDocChangeNotify4 = ActiveDocChangeNotify
swAppActiveModelDocChangeNotify5 = ActiveModelDocChangeNotify
swAppBackgroundProcessingEndNotify34 = BackgroundProcessingEndNotify
swAppBackgroundProcessingStartNotify33 = BackgroundProcessingStartNotify
swAppBegin3DInterconnectTranslationNotify37 = Begin3DInterconnectTranslationNotify
swAppBeginRecordNotify24 = Not used.
swAppBeginTranslationNotify16 = BeginTranslationNotify
swAppCommandCloseNotify29 = CommandCloseNotify
swAppCommandOpenPreNotify31 = CommandOpenPreNotify
swAppDestroyNotify3 = DestroyNotify
swAppDocumentConversionNotify9 = DocumentConversionNotify
swAppDocumentLoadNotify27 = Obsolete
swAppDocumentLoadNotify228 = DocumentLoadNotify2
swAppEnd3DInterconnectTranslationNotify38 = End3DInterconnectTranslationNotify
swAppEndRecordNotify25 = Not used.
swAppEndTranslationNotify16 = EndTranslationNotify
swAppFileCloseNotify32 = FileCloseNotify
swAppFileNewNotify2 = Obsolete
swAppFileNewNotify2

12 = FileNewNotify2

NOTE: Because it is possible to have a NULL active document when an add-in is notified using swAppFileOpenNotify2, use ISldWorks::IGetOpenDocumentByName2 instead of ISldWorks::IActiveDoc2.

swAppFileNewPreNotify26 = FileNewPreNotify
swAppFileOpenNotify1 = Obsolete
swAppFileOpenNotify213 = FileOpenNotify2
swAppFileOpenPostNotify22 = FileOpenPostNotify
swAppFileOpenPreNotify21 = FileOpenPreNotify
swAppInterfaceBrightnessThemeChangeNotify35 = InterfaceBrightnessThemeChangeNotify
swAppJournalWriteNotify27 = Not used.
swAppLightPMCreateNotifyNot used.
swAppLightSheetCreateNotify18 = LightSheetCreateNotify
swAppLightweightComponentOpenNotify10 = Not used.
swAppNonNativeFileOpenNotify7 = NonNativeFileOpenNotify
swAppOnIdleNotify20 = OnIdleNotify
swAppPromptForFilenameNotify15 = PromptForFilenameNotify
swAppPromptForMultipleFilenamesNotify30 = PromptForMultipleFileNamesNotify
swAppPropertySheetCreateNotify6 = PropertySheetCreateNotify
swAppReferencedFilePreNotify23 = ReferencedFilePreNotify
swAppReferencedFilePreNotify236 = ReferencedFilePreNotify2
swAppReferenceNotFoundNotify14 = ReferenceNotFoundNotify
swAppStandardsDatabaseChangeNotify19 = Not used.

这就是本篇文章要介绍的全部内容,我们下篇文章再见。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1621302.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

git切换源失败解决方案

git切换源失败解决方案 git切换源git切换源失败(无效) git切换源 git可以使用命令行切换源,一般使用的源有两个地址,git原生地址和淘宝镜像地址,部分公司会使用内部地址。 源切换后,npm i就是从源地址拉取相关依赖了。 原生地址…

选择合适的监控观测平台,为业务出海合规建设减负

在全球化商业版图的浩瀚海洋中,企业如同一艘勇敢的船只,突破重重阻碍,勇往直前。在这一征途中,监控观测活动是导航中的指南罗盘,确保企业航向正确、安全稳定,成为企业出海路上维护业务稳定和数据安全的关键…

【论文解析】笔触渲染生成 前沿工作梳理

最近的一些工作梳理 2023年 Stroke-based Neural Painting and Stylization with Dynamically Predicted Painting Region 2022年Im2Oil: Stroke-Based Oil Painting Rendering with Linearly Controllable Fineness Via Adaptive Sampling 文章目录 1 Stroke-based Neural P…

string 类以及模拟实现

𝙉𝙞𝙘𝙚!!👏🏻‧✧̣̥̇‧✦👏🏻‧✧̣̥̇‧✦ 👏🏻‧✧̣̥̇:Solitary_walk ⸝⋆ ━━━┓ - 个性标签 - :来于“云”的“羽球人”。…

【NLP】大语言模型基础之GPT

大语言模型基础之GPT GPT简介1. 无监督预训练2. 有监督下游任务微调 GPT-4体系结构1. GPT-4的模型结构2. GPT-4并行策略3. GPT-4中的专家并行GPT-4的特点 参考连接 以ELMo为代表的动态词向量模型开启了语言模型预训练的大门,此后,出现了以GPT和BERT为代表…

vue中web端播放rtsp视频流(摄像头监控视频)(海康威视录像机)

一、ffmpeg安装​​​​​​ ffmpeg下载 https://ffmpeg.org/download.html找ffmpeg-release-essentials.zip点击下载,下载完解压ffmpeg.exe 程序运行 二、配置ffmpeg环境变量 添加成功后验证是否生效任意地方打开cmd窗口输入 ffmpeg 打印如下表示成功 三、node…

使用IOPaint实现图片擦除路人

IOPaint 是一个免费的开源的 inpainting/outpainting 工具,由最先进的 AI 模型提供支持。 IOPaint 中使用各种模型来修改图像: 擦除:删除任何不需要的物体、缺陷、水印、人物。修复:对图像的特定部分进行修改、添加新对象或替换…

synchronized的底层原理

目录 介绍 实现原理 对象头 Monitor(监视器) 锁升级 偏向锁 轻量级锁 重量级锁 锁的优缺点 介绍 synchronized 是 Java 中的关键字,它用于锁定代码块或方法,以确保同一时刻只有一个线程可以进入被锁定的部分。这在多线程…

OpenCompass 大模型评测实战——作业

OpenCompass 大模型评测实战——作业 一、基础作业1.1、使用 OpenCompass 评测 internlm2-chat-1_8b 模型在 C-Eval 数据集上的性能1.1.1、安装基本环境1.1.2、解压数据集1.1.3、查看支持的数据集和模型1.1.4、启动评测 二、进阶作业2.1、将自定义数据集提交至OpenCompass官网 …

WPS表格,怎样保留每个人的最近日期的那一行数据?

方法很多,这里演示使用排序删除重复项 来完成。具体操作如下: 1. 选中数据区域中任意一个单元格,注意要么全选数据区域,要么只选一个单元格 2. 点击数据选项卡,排序,自定义排序, 在弹出对话框…

Java | Leetcode Java题解之第42题接雨水

题目&#xff1a; 题解&#xff1a; class Solution {public int trap(int[] height) {int n height.length;if (n 0) {return 0;}int[] leftMax new int[n];leftMax[0] height[0];for (int i 1; i < n; i) {leftMax[i] Math.max(leftMax[i - 1], height[i]);}int[] …

单例设计模式c++

什么是单例模式&#xff1f; 单例模式指在整个系统生命周期里&#xff0c;保证一个类只能产生一个实例&#xff0c;确保该类的唯一性。 单例模式分类 单例模式可以分为懒汉式和饿汉式&#xff0c;两者之间的区别在于创建实例的时间不同&#xff1a; 懒汉式&#xff1a;指系…

德国激荡50年的荆棘之路

财通证券表示&#xff0c;过去50年见证了德国如何走出财政泥沼、以保守的货币政策稳步前行&#xff0c;见证了“专精特新”带来的全球竞争力&#xff0c;也见证了产业转型缓慢导致的增长动能缺失。 过去50年&#xff0c;德国经济经历了一段跌宕起伏的发展史&#xff0c;这辆曾…

2024五一萌趣嘉年华主题展活动策划案

2024五一国宝大作战 萌趣嘉年华熊猫滚滚来野主题展活动策划案-53P 活动策划信息&#xff1a; 方案页码&#xff1a;53页 文件格式&#xff1a;PPT 方案简介&#xff1a; 活动思路&#xff1a; 五一马上就要到了~再加上全民关注的对象--大熊猫&#xff01;&#xff01; 这…

SpringCloud系列(14)--Eureka服务发现(Discovery)

前言&#xff1a;在上一章节中我们说明了一些关于服务信息的配置&#xff0c;在本章节则介绍一些关于Discovery的知识点及其使用 1、Discovery是什么&#xff0c;有什么用 Discovery&#xff08;服务发现&#xff09;是eureka的功能和特性&#xff0c;有时候微服务可能需要对外…

【MATLAB源码-第31期】基于matlab的光通信中不同调制方式的误码率对比。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 1. 光通信&#xff1a; 光通信是一种利用光波传输信息的技术。它使用光信号作为信息的载体&#xff0c;通过调制光波的特性来传输数据&#xff0c;通常利用光纤作为传输介质。光通信具有高带宽、低延迟和大容量等优点&#…

PE结构(二)PE头字段说明

PE头字段 DOS头 PE标记 标准PE头 可选PE头 我们今天分析一下PE头字段中所有重要成员的含义 DOS头 DOS头中我们需要去分析的是如下两个成员&#xff1a; 1.WORD e_magic&#xff1a;MZ标记&#xff0c;用于判断是否为可执行文件&#xff0c;即如果显示4D 5A&#xff0c;…

Centos7 安装zabbix agent2并测试与zabbix server的连通性

目录 1、实验环境 2、yum在线安装 2.1 查看agent2 rpm包&#xff0c;找到合适的rpm包 2.2 rpm安装 2.3 配置zabbix_agent2.conf 2.4启动agent2服务并将其加入到开机启动项中 3、配置防火墙放行10050端口&#xff0c;允许10050/tcp端口的入站流量。 4、在zabbix-server机…

云南旅游攻略

丽江景点 Day1 ——丽江古城 丽江古城是一个充满文化和历史的地方&#xff0c;拥有丰富的景点和活动。 推荐游玩&#xff1a; 参观标志性建筑&#xff1a;大水车是丽江古城的标志性建筑&#xff0c;可以在这里拍照留念。 探索中心广场&#xff1a;四方街是古城的中心&#xf…

从未如此清晰:了解SVG格式的终极解读!

图像质量对页面非常重要——扭曲和缩放变形的标志、图标或照片会使页面看起来粗糙和不协调&#xff0c;这个问题只会因为响应设计而复杂。访问者通过桌面机和智能手机查看应用程序&#xff0c;因此无论使用什么设备&#xff0c;图像都应该进行优化。如果有一个数字格式可以让图…