Condividi tramite


InkStrokeBuilder.CreateStrokeFromInkPoints Metodo

Definizione

Overload

CreateStrokeFromInkPoints(IIterable<InkPoint>, Matrix3x2)

Crea un tratto penna di base dall'insieme di oggetti InkPoint .

Nota

Usare CreateStrokeFromInkPoints e SetDefaultDrawingAttributes per compilare i tratti a livello di codice per un oggetto InkPresenter.

CreateStrokeFromInkPoints(IIterable<InkPoint>, Matrix3x2, IReference<DateTime>, IReference<TimeSpan>)

Crea un tratto di input penna avanzato dall'insieme di oggetti InkPoint .

Nota

Usare CreateStrokeFromInkPoints e SetDefaultDrawingAttributes per compilare i tratti a livello di codice per un oggetto InkPresenter.

CreateStrokeFromInkPoints(IIterable<InkPoint>, Matrix3x2)

Crea un tratto penna di base dall'insieme di oggetti InkPoint .

Nota

Usare CreateStrokeFromInkPoints e SetDefaultDrawingAttributes per compilare i tratti a livello di codice per un oggetto InkPresenter.

public:
 virtual InkStroke ^ CreateStrokeFromInkPoints(IIterable<InkPoint ^> ^ inkPoints, float3x2 transform) = CreateStrokeFromInkPoints;
InkStroke CreateStrokeFromInkPoints(IIterable<InkPoint> const& inkPoints, float3x2 const& transform);
public InkStroke CreateStrokeFromInkPoints(IEnumerable<InkPoint> inkPoints, Matrix3x2 transform);
function createStrokeFromInkPoints(inkPoints, transform)
Public Function CreateStrokeFromInkPoints (inkPoints As IEnumerable(Of InkPoint), transform As Matrix3x2) As InkStroke

Parametri

inkPoints

IIterable<InkPoint>

IEnumerable<InkPoint>

Raccolta di oggetti InkPoint .

transform
Matrix3x2 Matrix3x2

float3x2

Matrice di trasformazione 2D.

Restituisce

Tratto penna, inclusi i parametri della curva Bézier usati per il rendering finale del tratto.

Vedi anche

Si applica a

CreateStrokeFromInkPoints(IIterable<InkPoint>, Matrix3x2, IReference<DateTime>, IReference<TimeSpan>)

Crea un tratto di input penna avanzato dall'insieme di oggetti InkPoint .

Nota

Usare CreateStrokeFromInkPoints e SetDefaultDrawingAttributes per compilare i tratti a livello di codice per un oggetto InkPresenter.

public:
 virtual InkStroke ^ CreateStrokeFromInkPoints(IIterable<InkPoint ^> ^ inkPoints, float3x2 transform, IReference<DateTime> ^ strokeStartedTime, IReference<TimeSpan> ^ strokeDuration) = CreateStrokeFromInkPoints;
InkStroke CreateStrokeFromInkPoints(IIterable<InkPoint> const& inkPoints, float3x2 const& transform, IReference<DateTime> const& strokeStartedTime, IReference<TimeSpan> const& strokeDuration);
public InkStroke CreateStrokeFromInkPoints(IEnumerable<InkPoint> inkPoints, Matrix3x2 transform, System.Nullable<System.DateTimeOffset> strokeStartedTime, System.Nullable<System.TimeSpan> strokeDuration);
function createStrokeFromInkPoints(inkPoints, transform, strokeStartedTime, strokeDuration)
Public Function CreateStrokeFromInkPoints (inkPoints As IEnumerable(Of InkPoint), transform As Matrix3x2, strokeStartedTime As Nullable(Of DateTimeOffset), strokeDuration As Nullable(Of TimeSpan)) As InkStroke

Parametri

inkPoints

IIterable<InkPoint>

IEnumerable<InkPoint>

Raccolta di oggetti InkPoint .

transform
Matrix3x2 Matrix3x2

float3x2

Matrice di trasformazione 2D. In genere, questa è solo la matrice di identità.

strokeStartedTime

IReference<DateTime>

Nullable<DateTimeOffset>

Data e ora dell'avvio di InkStroke.

strokeDuration

IReference<TimeSpan>

Nullable<TimeSpan>

Ottiene o imposta il tempo impiegato dall'utente per disegnare un singolo tratto penna.

Restituisce

Tratto penna, inclusi i parametri della curva Bézier usati per il rendering finale del tratto.

Requisiti Windows

Famiglia di dispositivi
Windows 10 Creators Update (è stato introdotto in 10.0.15063.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v4.0)

Vedi anche

Si applica a