> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# getrenderproperty

> Ilk argumani verilen property key ile indekslemenin sonucunu dondurur. Drawing object icin object[property] ile ayni Drawing property lookup kullanilir, bu yuzden unknown properties ve destroyed Drawing objects nil dondurur. the Drawing API bu APIyi yalnizca the required rendering environment is active true oldugunda kaydeder; bu kontrol false oldugunda initializer bu globals degerlerini olusturmadan once doner.

<div className="real-function-page">
  ```lua theme={null}
  getrenderproperty(object: any, property: any): any
  ```

  ## Argümanlar

  <ParamField path={"object"} type={"any"} required>
    Indekslenecek deger. Drawing object ile RealDrawingObject \_\_index handler kullanilir.
  </ParamField>

  <ParamField path={"property"} type={"any"} required>
    Indeksleme icin kullanilan property key. Drawing object properties strings tabanlidir.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"propertyValue"} type={"any"}>
    object degerini property ile indeksleyerek donen deger veya Drawing \_\_index handler bu property icin deger bulamadiginda nil.
  </ResponseField>

  ## Örnek

  Read a Drawing property like direct indexing.

  ```lua theme={null}
  local line = Drawing.new("Line")
  line.Thickness = 3

  print(getrenderproperty(line, "Thickness"))
  print(getrenderproperty(line, "MissingProperty"))
  ```
</div>
