ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 610|回复: 1

官网CalloutFormat.AutoAttach语句为什么不通过?

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-9-7 08:01 | 显示全部楼层 |阅读模式

按官网给出的示例,为什么不通过。

image.png

不明白这条语句会出错?

  1. Sub lllll()
  2. Set myDocument = Application.ActiveSheet
  3. With myDocument.Shapes
  4.     With .AddCallout(msoCalloutTwo, 420, 170, 200, 50)
  5.         .TextFrame.Characters.Text = "auto-attached"
  6.         .Callout.AutoAttach = True
  7.     End With
  8.     With .AddCallout(msoCalloutTwo, 420, 350, 200, 50)
  9.         .TextFrame.Characters.Text = "not auto-attached"
  10.         .Callout.AutoAttach = False
  11.     End With
  12. End With
  13. End Sub
复制代码






CalloutFormat.AutoAttach 属性 (Excel) | Microsoft Learn  https://learn.microsoft.com/zh-c ... utformat.autoattach



如果标注线附加到标注文本框的位置会根据标注线起点(即标注所指位置)在标注文本框的左右位置的变化而变化,则该属性值为 True。 读/写 [color=var(--theme-hyperlink)]MsoTriState
语法
表达式。AutoAttach
表达 一个代表 [color=var(--theme-hyperlink)]CalloutFormat 对象的变量。
备注
当此属性的值为 True 时,放置值 (从标注文本框边缘到标注线附加位置的垂直距离) 当文本框位于原点的右侧时从文本框顶部测量,当文本框位于原点的左侧时,从文本框底部测量。
如果本属性的值为 False,那么不管标注文本框与标注线起点的相对位置怎样,标注的落差值都从标注文本框的顶边开始计算。 使用 [color=var(--theme-hyperlink)]CustomDrop 方法来设置垂直距离,并使用 [color=var(--theme-hyperlink)]删除 属性返回垂直距离。
仅当标注具有显式设置的 drop 值(即 [color=var(--theme-hyperlink)]DropType 属性的值为 [color=var(--theme-hyperlink)]msoCalloutDropCustom 时),设置此属性才影响标注。 创建标注时默认为具有显式垂直距离设置。
示例
本示例向 myDocument 中添加了两个标注。 如果将这两个标注的文本框拖到其起点的左边,那么只有自动调整连接点的标注才会改变标注线与文本框的连接点。
[backcolor=var(--theme-code-header)][size=0.8]VB复制[color=var(--theme-success-invert) !important][backcolor=var(--theme-success-base) !important][size=1.125]

Set myDocument = Worksheets(1) With myDocument.Shapes     With .AddCallout(msoCalloutTwo, 420, 170, 200, 50)         .TextFrame.Characters.Text = "auto-attached"         .Callout.AutoAttach = True     End With     With .AddCallout(msoCalloutTwo, 420, 350, 200, 50)         .TextFrame.Characters.Text = "not auto-attached"         .Callout.AutoAttach = False     End With End With

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-16 00:53 | 显示全部楼层




  1. Sub ll()
  2.    Dim Shp As Shape, Shps As Shapes
  3.        Set Shps = Application.ActivePresentation.Slides(1).Shapes
  4.        For ii = 2 To Shps.Count
  5.             Set Shp = Shps(ii)
  6.             With Shp
  7.                   Debug.Print ii, .Type, .AutoShapeType,
  8.                   With .Callout
  9.                        Debug.Print .Angle, .AutoAttach, .AutoLength
  10.                        'Debug.Print .Type
  11.                   End With
  12.             End With
  13.        Next ii
  14. End Sub
复制代码





没人教,自己瞎琢磨,看起来省了学费,结果就是过不去。




2             2             113           5             0             0
3             2             113           5             0             0
4             2             113           5             0             0
5             2             113           4             0             0
6             2             113           4             0             0
7             2             113           4             0             0
8             2             113           5             0             0
9             2             113           5             0             0
10            2             113           4             0             0
11            2             113           4             0             0
12            2             113           2             0             0
13            2             113           3             0             0
14            2             113           5             0             0
15            2             113           2             0             0
16            2             113           2             0             0
17            2             113           3             0             0
18            2             113           5             0             0
19            2             113           5             0             0
20            2             113           4             0             0
21            2             113           4             0             0
22            2             113           5             0             0









您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 01:30 , Processed in 0.027261 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表