ProvideToolboxFormatAttribute.Format 属性

获取一个支持的剪贴板格式的名称。

命名空间:  Microsoft.VisualStudio.Shell
程序集:  Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)

语法

声明
Public ReadOnly Property Format As String
public string Format { get; }

属性值

类型:System.String
剪贴板格式的名称。

备注

此属性是在构造函数中设置的。它必须是应用于 ProvideToolboxItemsAttribute 特性以及对 VSPackage 中为特定剪贴板格式支持的注册。

示例

在下面的示例中, ProvideToolboxFormatAttribute 属性的列表适用于 VSPackage 获取,格式值写入标准输出中。

public  void PrintFormats(RegistrationContext context) {
    foreach(ProvideToolboxFormatAttribute pfa in 
            context.ComponentType.GetCustomAttributes(typeof(ProvideToolboxFormatAttribute), true)) {
                if (format.Length != 0) {
                    System.Console.WriteLine(pfa.Format);
                   }
     }

}

.NET Framework 安全性

请参见

参考

ProvideToolboxFormatAttribute 类

Microsoft.VisualStudio.Shell 命名空间

ProvideToolboxFormatAttribute

ProvideToolboxItemsAttribute

ProvideToolboxFormatAttribute

其他资源

工具箱 (Visual Studio SDK)