1 2 3 4 5 6 7 8 9 10 11 12 13
| Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
Debug.Print "UserControl_ReadProperties"
Set Font = PropBag.ReadProperty("Font", Ambient.Font)
BackColor = PropBag.ReadProperty("BackColor", Ambient.BackColor)
DesabledColorText = PropBag.ReadProperty("DesabledColorText", DesabledCouleurLabel)
EnabledColorText = PropBag.ReadProperty("EnabledColorText", EnabledCouleurLabel)
UnselectedOngletColor = PropBag.ReadProperty("UnselectedOngletColor", UnselectedOngletCouleur)
SelectedOngletColor = PropBag.ReadProperty("SelectedOngletColor", SelectedOngletCouleur)
Set mcolOnglets = PropBag.ReadProperty("Onglets", Nothing)
Call ConstruireBoîte
Relief = PropBag.ReadProperty("Relief", Relief3D)
' OngletCourant = PropBag.ReadProperty("OngletCourant", 0)
End Sub |
Partager