interface PC.IRangeRule {
// Properties
${offset}: number;
${size}: number;
${decimal}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
offset: number;
// This property is not available in managed environment
// This property is not available in native environment
Starting offset of the range.
size: number;
// This property is not available in managed environment
// This property is not available in native environment
Size of the range.
decimal?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
If false or omitted, offset and size are displayed as hexadecimal values in UI, otherwise, they are displayed as decimal values.