Aracılığıyla paylaş


AccountTypes.Liability Alanı

Sorumluluğun hesap türünü temsil eder.

Ad Alanı:  Microsoft.AnalysisServices
Derleme:  Microsoft.AnalysisServices (Microsoft.AnalysisServices içinde.dll)

Sözdizimi

'Bildirim
Public Const Liability As String
'Kullanım
Dim value As String

value = AccountTypes.Liability
public const string Liability
public:
literal String^ Liability
static val mutable Liability: string
public const var Liability : String

Örnekler

Aşağıdaki örnekte C# sınıfı nasıl çalıştığını gösterir.

SortedList<String, String> accountTypes = new SortedList<string, string>();
accountTypes.Add("Asset", AccountTypes.Asset);
accountTypes.Add("Balance", AccountTypes.Balance);
accountTypes.Add("Expense", AccountTypes.Expense);
accountTypes.Add("Flow", AccountTypes.Flow);
accountTypes.Add("Income", AccountTypes.Income);
accountTypes.Add("Liability", AccountTypes.Liability);
accountTypes.Add("Statistical", AccountTypes.Statistical);
foreach (String key in accountTypes.Keys)
{
    System.Diagnostics.Debug.WriteLine(key + " --> " + accountTypes[key]);
}

Aşağıdaki sonuçlar görmeniz gerekir.

Asset --> Asset

Balance --> Balance

Expense --> Expense

Flow --> Flow

Income --> Income

Liability --> Liability

Statistical --> Statistical

Sağdaki değerler sütun içeriği her sabit hazır bilgi için temsil eder.