深色模式
控制台
获取标签集合对象
属性 | 说明 |
---|---|
指定对象的标签数量 | |
返回标签集合的父级 |
方法 | 说明 |
---|---|
添加标签 | |
删除标签 | |
判断标签是否存在 | |
获取标签对象 | |
获取标签名称 | |
获取标签值 |
指定对象的标签数量
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Count
表达式:文档类型应用对象
返回 指定对象的标签数量
//@file=base.pptx
async function example() {
await instance.ready()
const app = instance.Application
// 演示文稿对象
const presentation = await app.ActivePresentation
// 幻灯片对象
const Tags = await presentation.SlideShowWindow.View.Slide.Tags
// 指定对象的标签数量
const count = await Tags.Count
console.log(count)
}
返回标签集合的父级
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Parent
表达式:文档类型应用对象
返回 标签集合的父级
//@file=base.pptx
async function example() {
await instance.ready()
const app = instance.Application
// 演示文稿对象
const presentation = await app.ActivePresentation
// 幻灯片对象
const Tags = await presentation.SlideShowWindow.View.Slide.Tags
// 返回标签集合的父级
const Parent = await Tags.Parent
console.log(Parent)
}
添加标签
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Add({Name,Value})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Name | string | 是 | 标签的名称 | |
Value | string | 是 | 标签的值 |
//@file=base.ppt
async function example() {
await instance.ready()
const app = instance.Application
// 给当前页面添加标签
await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Add({
Name: 'test',
Value: '123'
})
}
删除标签
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Delete({Name})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Name | string | 是 | 标签的名称 |
//@file=base.ppt
async function example() {
await instance.ready()
const app = instance.Application
// 给当前页面删除标签
await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Delete({
Name: 'test'
})
}
判断标签是否存在
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Has({Name})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Name | string | 是 | 标签的名称 |
//@file=base.ppt
async function example() {
await instance.ready()
const app = instance.Application
// 给当前页面判断标签是否存在
await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Has({
Name: 'test'
})
}
获取标签对象
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Item({Name})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Name | string | 是 | 标签的名称 |
返回 Tag
标签对象
//@file=base.ppt
async function example() {
await instance.ready()
const app = instance.Application
// 获取名为Tags的Tag对象
await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Item({Name:'test'})
}
获取标签名称
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Name({Index})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Index | Number | 是 | 当前幻灯片标签索引 |
//@file=base.ppt
async function example() {
await instance.ready();
const app = instance.Application;
// 获取当前幻灯片第二个标签名称
const Name = await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Name({ Index: 2 });
}
获取标签值
表达式.ActivePresentation.SlideShowWindow.View.Slide.Tags.Value({Index})
表达式:文档类型应用对象
属性 | 数据类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
Index | Number | 是 | 当前幻灯片标签索引 |
//@file=base.ppt
async function example() {
await instance.ready();
const app = instance.Application;
// 获取当前幻灯片第二个标签值
const Name = await app.ActivePresentation.SlideShowWindow.View.Slide.Tags.Value({ Index: 2 });
}