Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Beschreibung

Das object-Statement beschreibt eine benutzerdefinierte Klasse. Der Code innerhalb der geschweiften Klammern kann Member und Funktionen der Klasse enthalten.

Syntax

Beispiel


object {};

object PivotTableStyle(Ai_RowLabel, Ai_ColumnLabel, Ai_RowTotal, Ai_ColumnTotal, Ai_Value, Ai_GrandTotal)
{
i_RowLabel = Ai_RowLabel;
i_ColumnLabel = Ai_ColumnLabel;
i_RowTotal = Ai_RowTotal;
i_ColumnTotal = Ai_ColumnTotal;
i_Value = Ai_Value;
i_GrandTotal = Ai_GrandTotal;
};
  • No labels