AUParameterTree.CreateGroup 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateGroup(String, String, AUParameterNode[]) |
使用指定的 |
CreateGroup(AUParameterGroup, String, String, UInt64) |
复制模板参数组并设置 |
CreateGroup(String, String, AUParameterNode[])
使用指定的 identifier
、 name
和 children
创建参数组。
[Foundation.Export("createGroupWithIdentifier:name:children:")]
public static AudioUnit.AUParameterGroup CreateGroup (string identifier, string name, AudioUnit.AUParameterNode[] children);
static member CreateGroup : string * string * AudioUnit.AUParameterNode[] -> AudioUnit.AUParameterGroup
参数
- identifier
- String
组的永久非本地化名称。
- name
- String
本地化的显示名称。
- children
- AUParameterNode[]
将成为组的子级的参数节点数组。
返回
新的参数组。
- 属性
适用于
CreateGroup(AUParameterGroup, String, String, UInt64)
复制模板参数组并设置 identifier
、 name
和 模板组相对 addressOffset
。
[Foundation.Export("createGroupFromTemplate:identifier:name:addressOffset:")]
public static AudioUnit.AUParameterGroup CreateGroup (AudioUnit.AUParameterGroup templateGroup, string identifier, string name, ulong addressOffset);
static member CreateGroup : AudioUnit.AUParameterGroup * string * string * uint64 -> AudioUnit.AUParameterGroup
参数
- templateGroup
- AUParameterGroup
要复制的参数组。
- identifier
- String
新组的永久非本地化名称。
- name
- String
新组的本地化显示名称。
- addressOffset
- UInt64
新组的参数相对于模板组的偏移量。
返回
复制的参数组。
- 属性