DSIconRenderingSize

public enum DSIconRenderingSize : Int

Type that defines the rendering size of a DSIcon.

There are several standard sizes that a DSIcon can display as.

let icon = DSIcon(renderingType: .beaker)

icon.renderingSize = .size32

Enumeration Cases

  • A 16x16 DSIcon.

    Declaration

    Swift

    case size16 = 16
  • A 20x20 DSIcon.

    Declaration

    Swift

    case size20 = 20
  • A 24x24 DSIcon.

    Declaration

    Swift

    case size24 = 24
  • A 32x32 DSIcon.

    Declaration

    Swift

    case size32 = 32