Files
2018-12-28 13:51:31 +02:00

12 lines
389 B
Go

package adcom1
// SizeUnit represents units of height and width used by creatives, assets, and placement specifications where noted.
type SizeUnit int8
// Units of height and width used by creatives, assets, and placement specifications where noted.
const (
SizeDIP SizeUnit = 1 // Device Independent Pixels (DIPS)
SizeIn SizeUnit = 2 // Inches
SizeCm SizeUnit = 3 // Centimeters
)