# `GSAxisPart propertyListValueFormat:error:`

*Instance Method*

The content of the object serialized as a dictionary.

## Declaration

```swift
func propertyListValue(format: GSFormatVersion) throws -> [String : Any]
```

```objc
- (NSDictionary<NSString *,id> *) propertyListValueFormat:(GSFormatVersion) format error:(NSError **) error;
```

```python
propertyListValueFormat_error_(format: GSFormatVersion) -> tuple[dict[str, object], NSError]
```

## Parameters

- `format` — The version
- `error` — On output, a pointer to an error object that describes why the method failed, or `nil` if no error occurred. If you are not interested in the error information, pass `nil` for this parameter.

## Return Value

A dict. On failure, this method returns `nil`.

## Discussion

The dict has a format like this:

{ bottomValue = 40; name = Width; topValue = 100; }

