Option Strict On
Option Explicit On

Imports System

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Resolved sizing profile for a horizontal reusable MediaButton strip.
    ''' </summary>
    Friend Structure MASMediaButtonStripLayoutProfile
        Friend Sub New(width As Single,
                       height As Single,
                       gap As Single,
                       groupGap As Single,
                       compact As Boolean)
            Me.Width = width
            Me.Height = height
            Me.Gap = gap
            Me.GroupGap = groupGap
            Me.Compact = compact
        End Sub

        Friend Width As Single
        Friend Height As Single
        Friend Gap As Single
        Friend GroupGap As Single
        Friend Compact As Boolean
    End Structure

End Namespace
