FlowFact - Entwicklungstools

zurück

Property - Phone1
Vorwahl abfragen

Hinweis: Es kann auch ein Wert zugewiesen werden.
  Property Phone1(ByVal Index As Integer) As String  
 


Index: Index der Telefonnummer in der Liste
Rückgabewert: Vorwahl


Public Property Get Phone1(ByVal Index As Integer) As String
    Dim strPhone1 As String
    Dim strPhone2 As String
    Dim strPhoneComment As String

    GetItem Index, strPhone1, strPhone2, strPhoneComment

    Phone1 = strPhone1
End Property