Sdílet prostřednictvím


FileCodeGroup.AttributeString Vlastnost

Definice

Získá řetězcovou reprezentaci atributů zásad příkazu pro skupinu kódu.

public:
 virtual property System::String ^ AttributeString { System::String ^ get(); };
public override string AttributeString { get; }
member this.AttributeString : string
Public Overrides ReadOnly Property AttributeString As String

Hodnota vlastnosti

Vždy hodnota null.

Příklady

Následující kód ukazuje použití AttributeString vlastnosti k získání atributů pro skupinu kódů. Tento příklad kódu je součástí většího příkladu FileCodeGroup pro třídu.

if ( fileCodeGroup->AttributeString != nullptr )
{
   throw gcnew NullReferenceException(
      L"The AttributeString property should be null." );
}
if (fileCodeGroup.AttributeString != null)
{
    throw new NullReferenceException(
        "The AttributeString property should be null.");
}
If (Not fileCodeGroup.AttributeString Is Nothing) Then
    Throw New NullReferenceException( _
        "AttributeString property is not empty")
End If

Poznámky

FileCodeGroup nepoužívá AttributeString, takže tato vlastnost je vždy null.

Platí pro