Internal use and usage in VelocityDbExteanions project
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public Page(
Database db,
ushort pageNumber,
uint shapeNumber,
ushort objectsPerPage,
bool doCache = true
)
Public Sub New (
db As Database,
pageNumber As UShort,
shapeNumber As UInteger,
objectsPerPage As UShort,
Optional doCache As Boolean = true
)
public:
Page(
Database^ db,
unsigned short pageNumber,
unsigned int shapeNumber,
unsigned short objectsPerPage,
bool doCache = true
)
new :
db : Database *
pageNumber : uint16 *
shapeNumber : uint32 *
objectsPerPage : uint16 *
?doCache : bool
(* Defaults:
let _doCache = defaultArg doCache true
*)
-> Page
Parameters
- db
- Type: VelocityDbDatabase
Database this Page belongs to - pageNumber
- Type: SystemUInt16
Page number of this page - shapeNumber
- Type: SystemUInt32
Short Id of object schema type if page contains just a single type of objects - objectsPerPage
- Type: SystemUInt16
Max how many objects to store on this page - doCache (Optional)
- Type: SystemBoolean
Cache this page in its database?
See Also