Condividi tramite


Proprietà Reference3.Culture

Ottiene la stringa delle impostazioni cultura di un riferimento.

Spazio dei nomi:  VSLangProj80
Assembly:  VSLangProj80 (in VSLangProj80.dll)

Sintassi

'Dichiarazione
ReadOnly Property Culture As String
    Get
string Culture { get; }
property String^ Culture {
    String^ get ();
}
abstract Culture : string
function get Culture () : String

Valore proprietà

Tipo: System.String
Il valore restituito dipende dal tipo di riferimento.

Tipo di riferimento

Valore restituito

Assembly

Stringa delle impostazioni cultura.Ad esempio, "EN-US" per l'inglese degli Stati Uniti.

COM

ID delle impostazioni locali.La stringa corrisponde all'ID delle impostazioni locali in formato esadecimale della libreria di tipi che costituisce il riferimento.Ad esempio, "0" per la versione multilingue oppure "409" per l'inglese degli Stati Uniti.

Implementa

Reference2.Culture

Note

Le informazioni riguardanti le impostazioni cultura comprendono specifiche relative alla lingua e al calendario. Per informazioni sulle stringhe valide, vedere CultureInfo.

Esempi

Nell'esempio riportato di seguito viene visualizzato il valore delle impostazioni cultura di ciascun riferimento in un progetto aperto di Visual Basic o Visual C#. Per eseguire questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione. Per un altro esempio, vedere Reference3.

Imports VSLangProj
Imports VSLangProj2
Imports VSLangProj80
Public Sub OnConnection(ByVal application As Object, _
 ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
 ByRef custom As Array) Implements IDTExtensibility2.OnConnection
    applicationObject = CType(application, DTE2)
    addInInstance = CType(addInInst, AddIn)
    DisplayCultures(applicationObject)
End Sub
Public Sub DisplayCultures(ByVal dte As DTE2)
    ' The first project is a Visual Basic or C# project.
    Dim vsProject As VSProject2 = _
    CType(dte.Solution.Projects.Item(1).Object, VSProject2)
    Dim aRef As Reference3
    For Each aRef In vsProject.References
        MsgBox(aRef.Name & " has a culture value of: " _
        & aRef.Culture.ToString())
    Next
End Sub
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application, 
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    applicationObject = (DTE2)application;
    addInInstance = (AddIn)addInInst;
    DisplayCultures(((DTE2)applicationObject));
}

public void DisplayCultures(DTE2 dte)
{
    // The first project is a Visual Basic or C# project.
    VSProject2 vsProject =
 ((VSProject2)(applicationObject.Solution.Projects.Item(1).Object));
    Reference3 aRef = null;
    foreach (VSLangProj80.Reference3 temp in vsProject.References)
    {
        aRef = temp;
         MessageBox.Show(aRef.Name + " has a culture value of: " 
+ aRef.Culture.ToString());
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Reference3 Interfaccia

Overload Culture

Spazio dei nomi VSLangProj80