SetPublic - Cell
Member of: Cell Script
Sets this cell as public or private.
SyntaxEdit
Function SetPublic(bool abPublic = True) native
ParametersEdit
- abPublic: If true, set the cell to public, otherwise, set it private.
- Default: True
Return ValueEdit
None.
ExamplesEdit
; Set the grocery store as public
GroceryStoreProperty.SetPublic()
; Set the back room as private
BackRoomProperty.SetPublic(false)