Compartir a través de


EditPoint.Copy (Método)

Copia en el Portapapeles el intervalo de texto especificado.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
Sub Copy ( _
    PointOrCount As Object, _
    Append As Boolean _
)
void Copy(
    Object PointOrCount,
    bool Append
)
void Copy(
    [InAttribute] Object^ PointOrCount, 
    [InAttribute] bool Append
)
abstract Copy : 
        PointOrCount:Object * 
        Append:bool -> unit 
function Copy(
    PointOrCount : Object, 
    Append : boolean
)

Parámetros

  • Append
    Tipo: System.Boolean
    Opcional.Indica si se ha de agregar al Portapapeles el texto seleccionado.El valor predeterminado es false.

Comentarios

Si el argumento es un objeto TextPoint, Copy copia una cadena que representa el texto existente entre el punto de edición y PointOrCount. Si el valor del argumento es un entero, el método Copy copia una cadena que representa el número de caracteres especificado a continuación del punto de edición (contando un carácter por cada secuencia de nueva línea implícita al final de cada línea). Si el valor del parámetro PointOrCount es negativo, el método Copy copia texto situado delante del punto de edición en lugar de texto situado detrás.

Si el valor del parámetro Append es true, el método Copy anexa la selección al contenido actual del Portapapeles en lugar de reemplazarlo.

Ejemplos

Sub CopyExample()
   Dim objTextDoc As TextDocument
   Dim objEditPt As EditPoint, iCtr As Integer
        
   ' Create a new text file.
   DTE.ItemOperations.NewFile("General\Text File")
        
   ' Get a handle to the new document and create an EditPoint.
   objTextDoc = DTE.ActiveDocument.Object("TextDocument")
   objEditPt = objTextDoc.StartPoint.CreateEditPoint
       
   ' Insert ten lines of text.
   For iCtr = 1 To 10
      objeditpt.Insert("This is a test." & Chr(13))
   Next iCtr
        
   ' Copies the fourth word of the fourth line and pastes it, 
   ' then cuts the fourth word of the eighth line.
   objEditPt.StartOfDocument()
   objEditPt.LineDown(3)
   objEditPt.WordRight(3)
   objEditPt.Copy(4)
   objEditPt.Paste()
   objEditPt.LineDown(3)
   objEditPt.WordRight(3)
   objEditPt.Cut(4)
End Sub

Seguridad de .NET Framework

Vea también

Referencia

EditPoint Interfaz

EnvDTE (Espacio de nombres)