ArcGIS Pro 2.9 API Reference Guide
ColumnCount Property (UncompressedTexture)
Example 

ArcGIS.Core.Geometry Namespace > UncompressedTexture Class : ColumnCount Property
Gets the width of the image in pixels.
Syntax
public override int ColumnCount {get;}
Public Overrides ReadOnly Property ColumnCount As Integer
Example
UncompressedTexture uncompressedTexture1 = new UncompressedTexture(new byte[10 * 12 * 3], 10, 12, 3);

// texture properties
int bpp = uncompressedTexture1.BytesPerPixel;
int columnCount = uncompressedTexture1.ColumnCount;
int rowCount = uncompressedTexture1.RowCount;

// build the textureResource and the material
TextureResource tr = new TextureResource(uncompressedTexture1);
BasicMaterial material = new BasicMaterial();
material.TextureResource = tr;
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

UncompressedTexture Class
UncompressedTexture Members