ICustomBitmapDataRowGetRefAsT Method
Gets a reference to a value interpreted as T within the current row at the specified x index.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
ref T GetRefAs<T>(
int x
)
where T : struct, new()
Function GetRefAs(Of T As {Structure, New}) (
x As Integer
) As T
generic<typename T>
where T : value class, gcnew()
T% GetRefAs(
int x
)
abstract GetRefAs :
x : int -> 'T when 'T : struct, new()
- x Int32
- The x-coordinate of the value within the row to retrieve. The valid range depends on the size of T.
- T
- The type of the value to return a reference for. Must be a value type without managed references.
TA reference to a value interpreted as
T within the current row at the specified
x index.