value property

int value

Gets the enumeration value as int. return The value.

Implementation

int get value {
    	switch (this) {
      	case DocumentFormat.unknown:
        	return 0;
      	case DocumentFormat.a4:
        	return 1;
      	case DocumentFormat.id1:
        	return 2;
      	case DocumentFormat.id2:
        	return 3;
      	case DocumentFormat.id3:
        	return 4;
	}
  	}