StrokeCollection.InkSerializedFormat Campo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta il formato nativo della persistenza per i dati dell'input penna.
public: static initonly System::String ^ InkSerializedFormat;
public static readonly string InkSerializedFormat;
staticval mutable InkSerializedFormat : string
Public Shared ReadOnly InkSerializedFormat As String
Valore del campo
Esempio
Nell'esempio seguente viene illustrato come copiare un oggetto StrokeCollection negli Appunti. Nell'esempio StrokeCollection viene specificato che è in Formato serializzato input penna (ISF), in modo che altri programmi, ad esempio Microsoft Office Word possano accettare i dati copiati.
public void CopyStrokeCollection(StrokeCollection strokes)
{
MemoryStream strokesInMemory = new MemoryStream();
strokes.Save(strokesInMemory);
DataObject dataobj = new DataObject(StrokeCollection.InkSerializedFormat,
strokesInMemory);
Clipboard.SetDataObject(dataobj, true);
}
Public Sub CopyStrokeCollection(ByVal strokes As StrokeCollection)
Dim strokesInMemory As New MemoryStream()
strokes.Save(strokesInMemory)
Dim dataObj As New DataObject(StrokeCollection.InkSerializedFormat, _
strokesInMemory)
Clipboard.SetDataObject(dataObj, True)
End Sub
Commenti
Usare il campo per specificare il InkSerializedFormat formato di StrokeCollection quando si trasferiscono dati, ad esempio quando si copia negli StrokeCollection Appunti.