SKTypeface.TryGetTableData Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TryGetTableData(UInt32, Byte[]) |
Returns the contents of the table data for the specified tag. |
TryGetTableData(UInt32, Int32, Int32, IntPtr) |
Returns the contents of the table data for the specified tag. |
TryGetTableData(UInt32, Byte[])
Returns the contents of the table data for the specified tag.
public bool TryGetTableData (uint tag, out byte[] tableData);
Parameters
- tag
- UInt32
The table tag to get the data for.
- tableData
- Byte[]
The contents of the table data for the specified tag.
Returns
Returns true if the content exists, otherwise false.
Applies to
TryGetTableData(UInt32, Int32, Int32, IntPtr)
Returns the contents of the table data for the specified tag.
public bool TryGetTableData (uint tag, int offset, int length, IntPtr tableData);
Parameters
- tag
- UInt32
The table tag to get the data for.
- offset
- Int32
The offset of the data to fetch.
- length
- Int32
The length of data to fetch.
- tableData
- IntPtr
The contents of the table data for the specified tag.
Returns
Returns true if the content exists, otherwise false.