00001
00002
00003
00004
00005
00006
00007 #import <OfficeImport/CMProperty.h>
00008
00009 @interface CMLengthProperty : CMProperty
00010 {
00011 double value;
00012 int unitType;
00013 }
00014
00015 + (id)cssStringValue:(double)fp8 unit:(int)fp16;
00016 - (id)initWithNumber:(double)fp8;
00017 - (id)initWithNumber:(double)fp8 unit:(int)fp16;
00018 - (double)value;
00019 - (int)intValue;
00020 - (int)unitType;
00021 - (int)compareValue:(id)fp8;
00022 - (id)cssStringForName:(id)fp8;
00023 - (id)cssString;
00024
00025 @end
00026