Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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;
};