Compartir a través de


Propiedad ItemProperty.IsUserProperty (Outlook)

Devuelve un valor booleano que indica si la propiedad item es una propiedad personalizada creada por el usuario. Solo lectura.

Sintaxis

expresión. IsUserProperty

Expresión Variable que representa un objeto ItemProperty .

Ejemplo:

El ejemplo siguiente muestra los nombres de todas las propiedades creadas por el usuario. La subrutina DisplayUserProps acepta una colección ItemProperties y busca en ella, mostrando los nombres de todos los objetos ItemProperty donde el valor de IsUserProperty es True. La colección ItemProperties es de base cero. En otras palabras, el primer objeto de la colección se obtiene acceso con un valor de índice cero (0).

Sub ItemProperty() 
 'Creates a new mail item and access it's properties 
 Dim objMail As MailItem 
 Dim objitems As ItemProperties 
 
 'Create the mail item 
 Set objMail = Application.CreateItem(olMailItem) 
 'Create a reference to the item properties collection 
 Set objitems = objMail.ItemProperties 
 'Create a reference to the item property page 
 Call DisplayUserProps(objitems) 
End Sub 
 
Sub DisplayUserProps(ByVal objitems As ItemProperties) 
 'Displays the names of all user-created item properties in the collection 
 For i = 0 To objitems.Count - 1 
 'Display name of property if it was created by the user 
 If objitems.Item(i).IsUserProperty = True Then 
 MsgBox "The property " & objitems(i).Name & " was created by the user." 
 End If 
 Next i 
End Sub

Consulte también

Objeto ItemProperty

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.