TypeLibVarAttribute クラス
アセンブリ: mscorlib (mscorlib.dll 内)

<AttributeUsageAttribute(AttributeTargets.Field, Inherited:=False)> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class TypeLibVarAttribute Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Field, Inherited=false)] [ComVisibleAttribute(true)] public sealed class TypeLibVarAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Field, Inherited=false)] [ComVisibleAttribute(true)] public ref class TypeLibVarAttribute sealed : public Attribute

タイプ ライブラリ インポータ (Tlbimp.exe) は、この属性をフィールドに適用します。
この属性はタイプ ライブラリがインポートされるときに適用され、変更されることはありません。適用されるのは、メソッドの VARFLAGS が 0 以外の場合だけです。この属性は、元の VARFLAGS がどのように設定されたかを把握する必要のあるツールが使用するために設計されています。共通言語ランタイムでは、この属性は使用されません。

フィールドの TypeLibVarAttribute 値を取得する方法を次の例に示します。
Imports System Imports System.Reflection Imports System.Runtime.InteropServices Module D Public Function IsHiddenField(ByVal fi As FieldInfo) As Boolean Dim FieldAttributes As Object() = fi.GetCustomAttributes(GetType(TypeLibVarAttribute), True) If FieldAttributes.Length > 0 Then Dim tlv As TypeLibVarAttribute = FieldAttributes(0) Dim flags As TypeLibVarFlags = tlv.Value Return (flags & TypeLibVarFlags.FHidden) > 0 End If Return False End Function End Module
using System; using System.Reflection; using System.Runtime.InteropServices; namespace D { class ClassD { public static bool IsHiddenField( FieldInfo fi ) { object[] FieldAttributes = fi.GetCustomAttributes( typeof( TypeLibVarAttribute ), true); if( FieldAttributes.Length > 0 ) { TypeLibVarAttribute tlv = ( TypeLibVarAttribute )FieldAttributes[0]; TypeLibVarFlags flags = tlv.Value; return ( flags & TypeLibVarFlags.FHidden ) != 0; } return false; } } }
using namespace System; using namespace System::Reflection; using namespace System::Runtime::InteropServices; ref class ClassD { public: static bool IsHiddenField( FieldInfo^ fi ) { array<Object^>^FieldAttributes = fi->GetCustomAttributes( TypeLibVarAttribute::typeid, true ); if ( FieldAttributes->Length > 0 ) { TypeLibVarAttribute^ tlv = dynamic_cast<TypeLibVarAttribute^>(FieldAttributes[ 0 ]); TypeLibVarFlags flags = tlv->Value; return (flags & TypeLibVarFlags::FHidden) != (TypeLibVarFlags)0; } return false; } };
import System.*; import System.Reflection.*; import System.Runtime.InteropServices.*; class ClassD { public static boolean IsHiddenField(FieldInfo fi) { Object fieldAttributes[] = fi.GetCustomAttributes(TypeLibVarAttribute.class.ToType(), true); if (fieldAttributes.length > 0) { TypeLibVarAttribute tlv = (TypeLibVarAttribute)fieldAttributes[0]; TypeLibVarFlags flags = tlv.get_Value(); return Convert.ToInt32(flags & TypeLibVarFlags.FHidden) != 0; } return false; } //IsHiddenField } //ClassD

System.Attribute
System.Runtime.InteropServices.TypeLibVarAttribute


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- TypeLibVarAttribute クラスのページへのリンク