Class PathCommands
Definition
- Namespace:
- Tizen.NUI.Base
Components .VectorGraphics
- Assembly:
- Tizen.NUI.dll
Data class that contains information about a list of path commands. For each command from the commands array, an appropriate number of points in points array should be specified.
C#
Copy
public class PathCommands
- Inheritance
-
objectPath
Commands
Constructors
Declaration
C#
Copy
public PathCommands(IEnumerable<PathCommandType> commands, IEnumerable<float> points)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T><Path |
commands | The array of commands. |
System.Collections.Generic.IEnumerable<T><float> | points | The array of points. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when commands or points are null. |
Properties
Declaration
C#
Copy
public IEnumerable<PathCommandType> Commands { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><Path |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when commands is null. |
Declaration
C#
Copy
public IEnumerable<float> Points { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><float> |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when points is null. |