# `GSInstance insertObject:inPropertiesAtIndex:`

*Instance Method*

Inserts a property object at the specified index in the properties array.

## Declaration

```swift
func insertObject(_ property: GSInfoProperty, inPropertiesAt idx: UInt)
```

```objc
- (void) insertObject:(GSInfoProperty *) property inPropertiesAtIndex:(NSUInteger) idx;
```

```python
insertObject_inPropertiesAtIndex_(property: GSInfoProperty, idx: int)
```

## Parameters

- `property` — The property object to insert.
- `idx` — The index to insert at.

