Compartir a través de


ExtendedProperties.Remove (Método) (ExtendedProperty)

Actualización: noviembre 2007

Quita un objeto ExtendedProperty de la colección ExtendedProperties.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink (en Microsoft.Ink.dll)

Sintaxis

'Declaración
Public Sub Remove ( _
    ep As ExtendedProperty _
)
'Uso
Dim instance As ExtendedProperties
Dim ep As ExtendedProperty

instance.Remove(ep)
public void Remove(
    ExtendedProperty ep
)
public:
void Remove(
    ExtendedProperty^ ep
)
public void Remove(
    ExtendedProperty ep
)
public function Remove(
    ep : ExtendedProperty
)

Parámetros

Comentarios

Este método quita el objeto ExtendedProperty únicamente de la instantánea (o de la referencia) de los datos manuscritos y no quita el objeto ExtendedProperty de los datos manuscritos reales.

Ejemplos

En este ejemplo de C# se quita un objeto ExtendedProperty, theExtendedProperty, de la propiedad ExtendedProperties de cada objeto Stroke de la colección Strokes, theStrokes.

// Remove the ExtendedProperty object from the ExtendedProperties property of
// each stroke in the strokes collection.
foreach (Stroke theStroke in theStrokes)
{
    // Test for theExtendedProperty on this stroke.
    if (theStroke.ExtendedProperties.Contains(theExtendedProperty))
    {
        // Remove the extended property from this stroke's extended
        // properties list.
        theStroke.ExtendedProperties.Remove(theExtendedProperty);
    }
}

En este ejemplo de Microsoft® Visual Basic® .NET se quita un objeto ExtendedProperty, theExtendedProperty, de la propiedad ExtendedProperties de cada objeto Stroke de la colección Strokes, theStrokes.

'Remove the ExtendedProperty object from the ExtendedProperties property of
'each stroke in the strokes collection.
For Each theStroke As Stroke In theStrokes
    'Test for theExtendedProperty on this stroke.
    If theStroke.ExtendedProperties.Contains(theExtendedProperty) Then
        'Remove the extended property from this stroke's extended
        'properties list.
        theStroke.ExtendedProperties.Remove(theExtendedProperty)
    End If
Next

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

ExtendedProperties (Clase)

ExtendedProperties (Miembros)

Remove (Sobrecarga)

Microsoft.Ink (Espacio de nombres)

ExtendedProperty

Ink