SetPublic - Cell

From the CreationKit Wiki
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Cell Script

Sets this cell as public or private.

Syntax[edit | edit source]

Function SetPublic(bool abPublic = True) native

Parameters[edit | edit source]

  • abPublic: If true, set the cell to public, otherwise, set it private.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Set the grocery store as public
GroceryStoreProperty.SetPublic()


; Set the back room as private
BackRoomProperty.SetPublic(false)

See Also[edit | edit source]