Skip to content

Commit

Permalink
Merge pull request #13 from statisticssweden/Feature/AddEnum_Presenta…
Browse files Browse the repository at this point in the history
…tionFormType

Added enum PresentationFormType
  • Loading branch information
KentMossback committed Sep 22, 2022
2 parents f554d7b + 880a802 commit 89c2cb2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions PCAxis.Core/Enums/PresentationFormType.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Namespace PCAxis.Paxiom
''' <summary>
''' Specifies presentation form that is displayed
''' </summary>
''' <remarks></remarks>
Public Enum PresentationFormType
''' <summary>
''' Only code should be displayed
''' </summary>
''' <remarks></remarks>
Code = 0
''' <summary>
''' Only text should be displayed
''' </summary>
''' <remarks></remarks>
Text = 1
''' <summary>
''' Both code and value should be displayed and the order should be the code and then the value text.
''' </summary>
''' <remarks></remarks>
Code_Value = 2
''' <summary>
''' Both code and value should be displayed and the order should be the value and then the code text.
''' </summary>
''' <remarks></remarks>
Value_Code = 3
End Enum

End Namespace


0 comments on commit 89c2cb2

Please sign in to comment.