Skip to content

GridRow

Summary

Represents the row of the grid.

Signature

1
public abstract interface GridRow

Namespace

cAlgo.API

See Also

Methods

SetHeightInPixels

Summary

Sets the height of the grid row in pixels.

Signature

1
public abstract void SetHeightInPixels(double value)

Parameters

Name Type Description
value double The value.

Return Value

void

SetHeightInStars

Summary

Sets the height of the grid row in stars.

Signature

1
public abstract void SetHeightInStars(double stars)

Parameters

Name Type Description
stars double The stars.

Return Value

void

SetHeightToAuto

Summary

Sets the height of the grid row to automatic.

Signature

1
public abstract void SetHeightToAuto()

Return Value

void

Properties

Index

Summary

Gets the grid row index.

Signature

1
public abstract int Index {get;}

Return Value

int

Height

Summary

Gets the height of the grid row.

Signature

1
public abstract GridLength Height {get;}

Return Value

GridLength

MinHeight

Summary

Gets or sets the minimum height of the grid row.

Signature

1
public abstract double MinHeight {get; set;}

Return Value

double

MaxHeight

Summary

Gets or sets the maximum height of the grid row.

Signature

1
public abstract double MaxHeight {get; set;}

Return Value

double